From 253e8031601105220106cbdd97f7f36741f0db30 Mon Sep 17 00:00:00 2001 From: Sergey Tsalkov Date: Tue, 4 Jun 2013 23:17:18 -0700 Subject: [PATCH] WhereClause can't have a __toString() method anymore because of how it's handled in combinatino with preparseQueryParams() now --- db.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/db.class.php b/db.class.php index 7d3288d..f07c204 100644 --- a/db.class.php +++ b/db.class.php @@ -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 {