summaryrefslogtreecommitdiffstats
path: root/system/language
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-10-17 06:07:40 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-10-17 06:07:40 +0200
commit59523592c58abc303a6eae1904c80fa6a428c3d3 (patch)
treebb27e7ac32d6b79c1ae5d5ddf33c8bc84436a228 /system/language
parente3945e9452fdaa155ad3a0ce51b591d3b12ccfe0 (diff)
Fixed a number of bug reports related to table/db names not being escaped or prefixed correctly.
Diffstat (limited to 'system/language')
-rw-r--r--system/language/english/db_lang.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/language/english/db_lang.php b/system/language/english/db_lang.php
index 697eb7880..2f7ccb5f3 100644
--- a/system/language/english/db_lang.php
+++ b/system/language/english/db_lang.php
@@ -6,6 +6,7 @@ $lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
$lang['db_unable_to_create'] = 'Unable to create the specified database: %s';
$lang['db_invalid_query'] = 'The query you submitted is not valid.';
$lang['db_must_set_table'] = 'You must set the database table to be used with your query.';
+$lang['db_must_set_database'] = 'You must set the database name in your database config file.';
$lang['db_must_use_set'] = 'You must use the "set" method to update an entry.';
$lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.';
$lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.';