summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-09 16:43:11 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-09 16:43:11 +0100
commit0aeee85b5164e31e2a76c05caa97bd898c1a776d (patch)
tree585cf8b1e473adb3bd9cebedc30f0893675f98cf /system/core/Common.php
parent16a704ce8a1449cbee22fb13bd32508c975fac9f (diff)
Move the Log class to system/core/
It is a core class after all, I guess somebody forgot it when the rest of them were moved.
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index aea5f1808..7feb16bfd 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -420,7 +420,7 @@ if ( ! function_exists('log_message'))
return;
}
- $_log =& load_class('Log');
+ $_log =& load_class('Log', 'core');
$_log->write_log($level, $message, $php_error);
}
}