Joost - 2013-11-27 13:26:48
In SQL_Parser.class.php in line 448 it says
$result = $this->getParams($clause['Right']['Value'], $clause['Right']['Type']);
This should be
$result = self::getParams($clause['Right']['Value'], $clause['Right']['Type']);
because you cannot call $this in the static way. Use self:: instead of $this.