aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/query.php
diff options
context:
space:
mode:
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";
}
}