- Code: Select all
Fatal error: Call to a member function reverse_query() on a non-object in <...>/forum/includes/mod_parser.php on line 245
Figured out to be a problem in acp_mods.php, line 1315:
- Code: Select all
// maybe should allow for potential extensions here
$actions = parser::reverse_edits($actions);
Maybe it was valid at some point, but now reverse_edits is made polymorphic, so it can no longer be called statically (the following line causes the error):
- Code: Select all
$reverse_edits['SQL'][] = $this->parser->reverse_query($query);