WhereClause can't have a __toString() method anymore because of how it's handled in combinatino with preparseQueryParams() now

This commit is contained in:
Sergey Tsalkov
2013-06-04 23:17:18 -07:00
parent c05a575be0
commit 253e803160

View File

@@ -813,7 +813,6 @@ class WhereClause {
// backwards compatability
// we now return full WhereClause object here and evaluate it in preparseQueryParams
function text() { return $this; }
function __toString() { return $this->text(); }
}
class DBTransaction {