diff options
author | Timothy Warren <tim@timshomepage.net> | 2011-10-13 16:52:02 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2011-10-13 16:52:02 +0200 |
commit | bb117677ab5a6096168f7c052853c94ecba19339 (patch) | |
tree | df0ed898ce42c70bdf74c9e1efdec72d74441ce5 /application/errors/error_php.php | |
parent | 2873ac64f1476551cc546f30ec6187e580cc8155 (diff) |
Fixed code style issue
Diffstat (limited to 'application/errors/error_php.php')
-rw-r--r-- | application/errors/error_php.php | 2 |
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 /> |