projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4235a4a
)
need to remove E_DEPRECATED when autoloading files
author
Chuck Hagenbuch
<chuck@horde.org>
Mon, 30 Mar 2009 03:04:44 +0000
(23:04 -0400)
committer
Chuck Hagenbuch
<chuck@horde.org>
Mon, 30 Mar 2009 03:04:44 +0000
(23:04 -0400)
framework/Autoloader/lib/Horde/Autoloader.php
patch
|
blob
|
history
diff --git
a/framework/Autoloader/lib/Horde/Autoloader.php
b/framework/Autoloader/lib/Horde/Autoloader.php
index
539d523
..
0d36ce7
100644
(file)
--- a/
framework/Autoloader/lib/Horde/Autoloader.php
+++ b/
framework/Autoloader/lib/Horde/Autoloader.php
@@
-46,7
+46,7
@@
class Horde_Autoloader
if (!is_null($replace) || preg_match($pattern, $file)) {
$file = str_replace(array('::', '_'), '/', $file) . '.php';
- $oldErrorReporting = error_reporting(E_ALL ^ E_WARNING);
+ $oldErrorReporting = error_reporting(E_ALL ^ E_WARNING
^ E_DEPRECATED
);
/* @TODO H4: Change back to include */
$included = include_once $file;
error_reporting($oldErrorReporting);