diff options
-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 /> |