From 004a0c8a75e8fb71b8ba0c47f000c381c03a2967 Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 3 Nov 2008 13:09:42 +0000 Subject: Minor tweaks 'cos case does matter... git-svn-id: https://code.elgg.org/elgg/trunk@2379 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/query.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engine/lib/query.php') diff --git a/engine/lib/query.php b/engine/lib/query.php index c74628b91..d18f152cf 100644 --- a/engine/lib/query.php +++ b/engine/lib/query.php @@ -401,7 +401,7 @@ { function __construct() { - $this->query_type = "select"; + $this->query_type = "SELECT"; } } @@ -415,7 +415,7 @@ { function __construct() { - $this->query_type = "insert into"; + $this->query_type = "INSERT INTO"; } } @@ -429,7 +429,7 @@ { function __construct() { - $this->query_type = "delete from"; + $this->query_type = "DELETE FROM"; } } @@ -443,7 +443,7 @@ { function __construct() { - $this->query_type = "update"; + $this->query_type = "UPDATE"; } } -- cgit v1.2.3