Skip to content

Commit

Permalink
Hot fix debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
XaBerr committed Oct 22, 2017
1 parent 0ec979c commit 0140027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/jate/modules/Debug/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static function push() {
}
public static function pop() {
if(count(self::$stack)>0)
self::$stack = array_shift(self::$stack);
array_shift(self::$stack);
}
public static function emptyStack() {
self::$stack = [];
Expand Down

0 comments on commit 0140027

Please sign in to comment.