removed wrong semicolon bedind the sql queries

This commit is contained in:
Ralf Becker 2004-07-23 00:59:44 +00:00
parent 901dfb9f5f
commit 8107e51abc

View File

@ -419,7 +419,7 @@
$sql = "INSERT INTO phpgw_config (config_app,config_name,config_value) " $sql = "INSERT INTO phpgw_config (config_app,config_name,config_value) "
."VALUES ('".$setup_info[$appname]['name']."','" ."VALUES ('".$setup_info[$appname]['name']."','"
.$appname."_tables_prefix','".$setup_info[$appname]['tables_prefix']."');"; .$appname."_tables_prefix','".$setup_info[$appname]['tables_prefix']."')";
$this->db->query($sql,__LINE__,__FILE__); $this->db->query($sql,__LINE__,__FILE__);
} }
if($use_appid) if($use_appid)
@ -446,7 +446,7 @@
. $enable . "," . $enable . ","
. (int)$setup_info[$appname]['app_order'] . "," . (int)$setup_info[$appname]['app_order'] . ","
. "'" . $tables . "'," . "'" . $tables . "',"
. "'" . $setup_info[$appname]['version'] . "');" . "'" . $setup_info[$appname]['version'] . "')"
); );
$this->clear_session_cache(); $this->clear_session_cache();
} }