From ed291aaaba340af4d9c1bcad3e9585178ebd7f1d Mon Sep 17 00:00:00 2001 From: Ice Date: Thu, 11 Sep 2008 12:49:55 +0000 Subject: [PATCH] whoops missing ; --- root/install_portal/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/root/install_portal/install.php b/root/install_portal/install.php index 2055f638..ab7b07cf 100644 --- a/root/install_portal/install.php +++ b/root/install_portal/install.php @@ -887,7 +887,7 @@ if( $user->data['is_registered'] && $auth->acl_get('a_board') ) $chk_config = $db->sql_fetchrow( $chk_result ); if( !sizeof( $chk_config ) ) { - $portal_update_array[] = 'INSERT ' . PORTAL_CONFIG_TABLE . " (config_name, config_value) VALUES ('portal_show_announcements_replies_views', '1');", + $portal_update_array[] = 'INSERT ' . PORTAL_CONFIG_TABLE . " (config_name, config_value) VALUES ('portal_show_announcements_replies_views', '1');"; } $sql_chk = 'SELECT config_value FROM ' . PORTAL_CONFIG_TABLE . " WHERE config_name = 'portal_show_news_replies_views'"; @@ -895,7 +895,7 @@ if( $user->data['is_registered'] && $auth->acl_get('a_board') ) $chk_config = $db->sql_fetchrow( $chk_result ); if( !sizeof( $chk_config ) ) { - $portal_update_array[] = 'INSERT ' . PORTAL_CONFIG_TABLE . " (config_name, config_value) VALUES ('portal_show_news_replies_views', '1');", + $portal_update_array[] = 'INSERT ' . PORTAL_CONFIG_TABLE . " (config_name, config_value) VALUES ('portal_show_news_replies_views', '1');"; } }