User tests: Successful: Unsuccessful:
Don't forget mysqli.php, too!
The right fix is to remove the $this->sql
checks in the MySQL(i) drivers. The SQL Server driver can be left as is shipped in 2.5, there's some 3.x logic backported that makes that check valid.
Yes, we can just use the files from the version 2.5.14 to "fix" this issue!
Looking better Michael?
YES!
You are welcome, @gbatuyong ;-)
That's not right.
$this->sql
is referring to a query, so it should either be a query string or an instance ofJDatabaseQuery
. 2.5 doesn't have theJDatabaseQueryLimitable
interface, so that's not an option here.