- Patch #316139 by hswong3i: __toString() should be public to work with PHP5.3.

merge-requests/26/head
Dries Buytaert 2008-10-06 14:39:40 +00:00
parent cbeaf157af
commit 3f144d60fa
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ abstract class Query {
/**
* Returns the query as a prepared statement string.
*/
abstract protected function __toString();
abstract public function __toString();
}
/**