From 8107e51abcf74d4f44e994a514ebd30a3989036a Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 23 Jul 2004 00:59:44 +0000 Subject: [PATCH] removed wrong semicolon bedind the sql queries --- phpgwapi/inc/class.setup.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/inc/class.setup.inc.php b/phpgwapi/inc/class.setup.inc.php index ab1ab4dab9..a737ce045b 100644 --- a/phpgwapi/inc/class.setup.inc.php +++ b/phpgwapi/inc/class.setup.inc.php @@ -419,7 +419,7 @@ $sql = "INSERT INTO phpgw_config (config_app,config_name,config_value) " ."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__); } if($use_appid) @@ -446,7 +446,7 @@ . $enable . "," . (int)$setup_info[$appname]['app_order'] . "," . "'" . $tables . "'," - . "'" . $setup_info[$appname]['version'] . "');" + . "'" . $setup_info[$appname]['version'] . "')" ); $this->clear_session_cache(); }