sql_query($sql[$i])) ) { $errored = true; $error = $db->sql_error(); echo " -> FAILED ---> " . $error['message'] . "

\n\n"; } else { echo " -> COMPLETED

\n\n"; } } if ( $errored ) { echo "\n
Some queries failed! This is probably nothing to worry about, update will attempt to continue. Should this fail you may need to seek help at our development board (see README)

\n\n"; } $sql = "SELECT themes_id FROM " . THEMES_TABLE . " WHERE template_name = 'subSilver'"; if( !($result = $db->sql_query($sql)) ) { die("Couldn't obtain subSilver id"); } if( $row = $db->sql_fetchrow($result) ) { $theme_id = $row['themes_id']; $sql = "UPDATE " . THEMES_TABLE . " SET head_stylesheet = 'subSilver.css', body_background = '', body_bgcolor = 'E5E5E5', body_text = '000000', body_link = '006699', body_vlink = '5493B4', body_alink = '', body_hlink = 'DD6900', tr_color1 = 'EFEFEF', tr_color2 = 'DEE3E7', tr_color3 = 'D1D7DC', tr_class1 = '', tr_class2 = '', tr_class3 = '', th_color1 = '98AAB1', th_color2 = '006699', th_color3 = 'FFFFFF', th_class1 = 'cellpic1.gif', th_class2 = 'cellpic3.gif', th_class3 = 'cellpic2.jpg', td_color1 = 'FAFAFA', td_color2 = 'FFFFFF', td_color3 = '', td_class1 = 'row1', td_class2 = 'row2', td_class3 = '', fontface1 = 'Verdana, Arial, Helvetica, sans-serif', fontface2 = 'Trebuchet MS', fontface3 = 'Courier, ''Courier New'', sans-serif', fontsize1 = 10, fontsize2 = 11, fontsize3 = 12, fontcolor1 = '444444', fontcolor2 = '006600', fontcolor3 = 'FFA34F', span_class1 = '', span_class2 = '', span_class3 = '' WHERE themes_id = $theme_id"; if ( !($result = $db->sql_query($sql)) ) { die("Couldn't update subSilver theme"); } $sql = "INSERT INTO " . THEMES_NAME_TABLE . " (themes_id, tr_color1_name, tr_color2_name, tr_color3_name, tr_class1_name, tr_class2_name, tr_class3_name, th_color1_name, th_color2_name, th_color3_name, th_class1_name, th_class2_name, th_class3_name, td_color1_name, td_color2_name, td_color3_name, td_class1_name, td_class2_name, td_class3_name, fontface1_name, fontface2_name, fontface3_name, fontsize1_name, fontsize2_name, fontsize3_name, fontcolor1_name, fontcolor2_name, fontcolor3_name, span_class1_name, span_class2_name, span_class3_name) VALUES ($theme_id, 'The lightest row colour', 'The medium row color', 'The darkest row colour', '', '', '', 'Border round the whole page', 'Outer table border', 'Inner table border', 'Silver gradient picture', 'Blue gradient picture', 'Fade-out gradient on index', 'Background for quote boxes', 'All white areas', '', 'Background for topic posts', '2nd background for topic posts', '', 'Main fonts', 'Additional topic title font', 'Form fonts', 'Smallest font size', 'Medium font size', 'Normal font size (post body etc)', 'Quote & copyright text', 'Code text colour', 'Main table header text colour', '', '', '')"; if ( !($result = $db->sql_query($sql)) ) { echo "WARNING >> Couldn't insert subSilver name info
\n"; } } print "
Updating topic first post info
"; $sql = "SELECT MIN(post_id) AS first_post_id, topic_id FROM " . POSTS_TABLE . " GROUP BY topic_id ORDER BY topic_id ASC"; if ( !($result = $db->sql_query($sql)) ) { die("Couldn't obtain first post id list"); } if ( $row = $db->sql_fetchrow($result) ) { do { $post_id = $row['first_post_id']; $topic_id = $row['topic_id']; $sql = "UPDATE " . TOPICS_TABLE . " SET topic_first_post_id = $post_id WHERE topic_id = $topic_id"; if ( !$db->sql_query($sql) ) { die("Couldn't update topic first post id in topic :: $topic_id"); } } while ( $row = $db->sql_fetchrow($result) ); } print "
Updating moderator user_level
"; $sql = "SELECT DISTINCT u.user_id FROM " . USERS_TABLE . " u, " . USER_GROUP_TABLE . " ug, " . AUTH_ACCESS_TABLE . " aa WHERE aa.auth_mod = 1 AND ug.group_id = aa.group_id AND u.user_id = ug.user_id AND u.user_level <> 1"; if ( !$db->sql_query($sql) ) { die("Couldn't obtain moderator user ids"); } if ( $row = $db->sql_fetchrow($result) ) { do { $sql = "UPDATE " . USERS_TABLE . " SET user_level = " . MOD . " WHERE user_id = " . $row['user_id']; if ( !$db->sql_query($sql) ) { die("Couldn't update user level"); } } while ( $row = $db->sql_fetchrow($result) ); } print "
Updating config settings
"; $sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value ) VALUES ('version', 'RC-3')"; if ( !$db->sql_query($sql) ) { die("Couldn't insert new config var"); } $sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value) VALUES ('record_online_users', '1')"; if( !$db->sql_query($sql) ) { die("Couldn't insert config key 'record_online_users'"); } $sql = "INSERT INTO " . CONFIG_TABLE . " (config_name, config_value) VALUES ('record_online_date', '" . time() . "')"; if( !$db->sql_query($sql) ) { die("Couldn't insert config key 'record_online_date'"); } echo "\n
\nCOMPLETE! Please delete this file before continuing!
\n"; ?>