summaryrefslogtreecommitdiffstats
path: root/application/errors
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2011-10-13 16:52:02 +0200
committerTimothy Warren <tim@timshomepage.net>2011-10-13 16:52:02 +0200
commitbb117677ab5a6096168f7c052853c94ecba19339 (patch)
treedf0ed898ce42c70bdf74c9e1efdec72d74441ce5 /application/errors
parent2873ac64f1476551cc546f30ec6187e580cc8155 (diff)
Fixed code style issue
Diffstat (limited to 'application/errors')
-rw-r--r--application/errors/error_php.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/errors/error_php.php b/application/errors/error_php.php
index 279556a98..cebf91724 100644
--- a/application/errors/error_php.php
+++ b/application/errors/error_php.php
@@ -8,7 +8,7 @@
<p>Line Number: <?php echo $line; ?></p>
<p>Backtrace: </p>
<?php foreach(debug_backtrace() as $error): ?>
-<?php if(isset($error['file']) && !stristr($error['file'], SYSDIR)): ?>
+<?php if(isset($error['file']) && ! stristr($error['file'], SYSDIR)): ?>
<p>
File: <?php echo $error['file'] ?><br />
Line: <?php echo $error['line'] ?><br />