aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/lib/query.php12
-rw-r--r--languages/en.php6
2 files changed, 12 insertions, 6 deletions
diff --git a/engine/lib/query.php b/engine/lib/query.php
index 3507bbe2e..61f36dc1e 100644
--- a/engine/lib/query.php
+++ b/engine/lib/query.php
@@ -362,8 +362,8 @@
$string = " (";
foreach ($this->wheres as $where) {
if (!($where instanceof WhereQueryComponent))
- throw new DatabaseException("Where set contains non WhereQueryComponent");
-
+ throw new DatabaseException(elgg_echo('DatabaseException:WhereSetNonQuery'));
+
if (!$cnt)
$string.= $where->toStringNoLink();
else
@@ -650,10 +650,10 @@
$sql .= " $fields from ";
}
else
- throw new DatabaseException("Fields missing on a select style query");
+ throw new DatabaseException(elgg_echo('DatabaseException:SelectFieldsMissing'));
}
else
- throw new DatabaseException("Unrecognised or unspecified query type.");
+ throw new DatabaseException(elgg_echo('DatabaseException:UnspecifiedQueryType'));
// Tables
if (!empty($this->tables))
@@ -664,7 +664,7 @@
$sql = trim($sql, ", ");
}
else
- throw new DatabaseException("No tables specified for query.");
+ throw new DatabaseException(elgg_echo('DatabaseException:NoTablesSpecified'));
// Joins on select queries
if ($this->query_type->query_type == 'select')
@@ -710,7 +710,7 @@
$sql .= "{$this->access_control} ";
}
else
- throw new DatabaseException("No access control was provided on query");
+ throw new DatabaseException(elgg_echo('DatabaseException:NoACL'));
// Order by
if (!empty($this->order))
diff --git a/languages/en.php b/languages/en.php
index c5f8e113a..86136a574 100644
--- a/languages/en.php
+++ b/languages/en.php
@@ -78,6 +78,12 @@
'NotificationException:NoHandlerFound' => "No handler found for '%s' or it was not callable.",
'NotificationException:ErrorNotifyingGuid' => "There was an error while notifying %d",
'NotificationException:NoEmailAddress' => "Could not get the email address for GUID:%d",
+
+ 'DatabaseException:WhereSetNonQuery' => "Where set contains non WhereQueryComponent",
+ 'DatabaseException:SelectFieldsMissing' => "Fields missing on a select style query",
+ 'DatabaseException:UnspecifiedQueryType' => "Unrecognised or unspecified query type.",
+ 'DatabaseException:NoTablesSpecified' => "No tables specified for query.",
+ 'DatabaseException:NoACL' => "No access control was provided on query",
/**
* User details