diff --git a/setup/lang_records.inc.php b/setup/lang_records.inc.php index 1d6f67e517..ce75f3b69b 100644 --- a/setup/lang_records.inc.php +++ b/setup/lang_records.inc.php @@ -413,4 +413,4 @@ $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'created by','todo','en','Created By')"); $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'you have entered an invailed date','todo','en','you have entered an invailed date')"); $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'are you sure you want to delete this entry','todo','en','Are you sure you want to delete this entry?')"); - $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'Weather','Weather','en','weather')"); + $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weather','Weather','en','weather')"); diff --git a/setup/upgradetables_mysql.inc.php b/setup/upgradetables_mysql.inc.php index e5c012d074..5ca61766b7 100644 --- a/setup/upgradetables_mysql.inc.php +++ b/setup/upgradetables_mysql.inc.php @@ -220,7 +220,7 @@ //install weather support $db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('weather', 'Weather', 1, 12, NULL, '".$phpgw_info["server"]["version"]."')"); - $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'Weather','Weather','en','weather')"); + $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weather','Weather','en','weather')"); echo " \n"; echo " Upgrade from 0.9.1 to 0.9.2 is completed.\n"; diff --git a/setup/upgradetables_pgsql.inc.php b/setup/upgradetables_pgsql.inc.php index 549ea88661..d9b7ed599d 100644 --- a/setup/upgradetables_pgsql.inc.php +++ b/setup/upgradetables_pgsql.inc.php @@ -220,7 +220,7 @@ //add weather support $db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('weather', 'Weather', 1, 12, NULL, '".$phpgw_info["server"]["version"]."')"); - $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'Weather','Weather','en','weather')"); + $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weather','Weather','en','weather')"); echo " \n"; echo " Upgrade from 0.9.1 to 0.9.2 is completed.\n";