aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/query.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-11-03 13:09:42 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-11-03 13:09:42 +0000
commit004a0c8a75e8fb71b8ba0c47f000c381c03a2967 (patch)
treeff34fa6b50a89713b20ac46c0fa672428c533a97 /engine/lib/query.php
parent05ffc437ef95e84e0438c5b0230b261179b47cca (diff)
downloadelgg-004a0c8a75e8fb71b8ba0c47f000c381c03a2967.tar.gz
elgg-004a0c8a75e8fb71b8ba0c47f000c381c03a2967.tar.bz2
Minor tweaks 'cos case does matter...
git-svn-id: https://code.elgg.org/elgg/trunk@2379 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/query.php')
-rw-r--r--engine/lib/query.php8
1 files changed, 4 insertions, 4 deletions
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";
}
}