projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db2d27b
)
Don't hardcode classname
author
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 4 Mar 2010 18:36:15 +0000
(11:36 -0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 4 Mar 2010 19:21:35 +0000
(12:21 -0700)
framework/Util/lib/Horde/Util.php
patch
|
blob
|
history
diff --git
a/framework/Util/lib/Horde/Util.php
b/framework/Util/lib/Horde/Util.php
index
a7a4375
..
6b07d54
100644
(file)
--- a/
framework/Util/lib/Horde/Util.php
+++ b/
framework/Util/lib/Horde/Util.php
@@
-332,7
+332,7
@@
class Horde_Util
if (!is_array($var)) {
$var = stripslashes($var);
} else {
- array_walk($var, array(
'Horde_Util'
, 'dispelMagicQuotes'));
+ array_walk($var, array(
__CLASS__
, 'dispelMagicQuotes'));
}
}
@@
-636,7
+636,7
@@
class Horde_Util
{
/* Initialization of variables and shutdown functions. */
if (!self::$_shutdownreg) {
- register_shutdown_function(array(
'Horde_Util'
, 'shutdown'));
+ register_shutdown_function(array(
__CLASS__
, 'shutdown'));
self::$_shutdownreg = true;
}