summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-12-30 08:43:14 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-12-30 08:43:14 +0000
commit95539f5e08416032f3029f8c58f4a27a6633f703 (patch)
tree782cbb0bf7644b28fa2ab56bedde05e9abef4200
parentac541754c8ef2c16ba3f37431c1fc322cca6a5f9 (diff)
downloadbrdo-95539f5e08416032f3029f8c58f4a27a6633f703.tar.gz
brdo-95539f5e08416032f3029f8c58f4a27a6633f703.tar.bz2
#105889: fix parse error in locale.inc
-rw-r--r--includes/locale.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index bb25d02fa..6f1226d01 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -749,7 +749,7 @@ function _locale_import_one_string($op, $value = NULL, $mode = NULL, $lang = NUL
}
}
else { // no string
- db_query("INSERT INTO {locales_source} (location, source) VALUES ('%s', '%s')", $comments, english[$key]);
+ db_query("INSERT INTO {locales_source} (location, source) VALUES ('%s', '%s')", $comments, $english[$key]);
$loc = db_fetch_object(db_query("SELECT lid FROM {locales_source} WHERE source = '%s'", $english[$key]));
$lid = $loc->lid;
db_query("INSERT INTO {locales_target} (lid, locale, translation, plid, plural) VALUES (%d, '%s', '%s', %d, %d)", $lid, $lang, $trans, $plid, $key);