fixed referencesl to $log

This commit is contained in:
Andreas 2019-09-19 13:56:29 +02:00
parent 5c64a65665
commit cfad07fab1

View File

@ -30,7 +30,7 @@ class TestAction{
}
public static function returnLogAsText(){
for($i = 0; $i<sizeof(self::$log); $i++){
echo("[".self::log[i]['stats']."] ".self::log[i]['message']);
echo("[".self::$log[i]['stats']."] ".self::$log[i]['message']);
}
}
}