summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-08-05 16:08:33 +0200
committerDerek Allard <derek.allard@ellislab.com>2010-08-05 16:08:33 +0200
commit2ddc9496e9403a59a87b644d1c2b9a106b773e46 (patch)
tree5762dccce2cc5c308cbc8224f09442729cac4bc3 /system/core/Common.php
parent073e15cea53c53b73a215a86a22aabe4d5db2549 (diff)
Added an optional second parameter to <kbd>show_404()</kbd> to disable logging.
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index 9dee591e6..2b8ad26b1 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -317,10 +317,10 @@
* @access public
* @return void
*/
- function show_404($page = '')
+ function show_404($page = '', $log_error = TRUE)
{
$_error =& load_class('Exceptions', 'core');
- $_error->show_404($page);
+ $_error->show_404($page, $log_error);
exit;
}