From 6f9a17621a824d25a17066759dcc1ccad42cf2fe Mon Sep 17 00:00:00 2001 From: Geoff Munn Date: Tue, 29 Sep 2009 22:03:30 +0000 Subject: [PATCH] MINOR FIX: column names escaped properly git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@87570 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/SQLQueryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SQLQueryTest.php b/tests/SQLQueryTest.php index 7ef907989..6630fd65e 100644 --- a/tests/SQLQueryTest.php +++ b/tests/SQLQueryTest.php @@ -161,7 +161,7 @@ class SQLQueryTest extends SapphireTest { ); $query = new SQLQuery(); - $query->where[] = "MyTable.`ID`= 5"; + $query->where[] = "MyTable.ID= 5"; $this->assertTrue( $query->filtersOnID(), "filtersOnID() is true with table and quoted column name "