Browse Source

Update templates/element/exception_stack_trace.php

Co-Authored-By: othercorey <corey.taylor.fl@gmail.com>
Mark Story 6 years ago
parent
commit
49836e55e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      templates/element/exception_stack_trace.php

+ 1 - 1
templates/element/exception_stack_trace.php

@@ -22,7 +22,7 @@ foreach ($trace as $i => $stack):
     $line = null;
     if (isset($stack['file'], $stack['line']) && is_numeric($stack['line'])):
         $line = $stack['line'];
-        $excerpt = Debugger::excerpt($stack['file'], $stack['line'], 4);
+        $excerpt = Debugger::excerpt($stack['file'], $line, 4);
     endif;
 
     if (isset($stack['file'])):