Spelling mistakes, general clean up, few extra tidbits

This commit is contained in:
Ice
2008-08-09 14:47:40 +00:00
parent 618d0cca19
commit 205fe3ccaf
17 changed files with 110 additions and 104 deletions

View File

@@ -1,6 +1,6 @@
<?php
$current_version = '1.0.0';
$current_version = '1.0.0RC2';
// If only checking version, exit.
if( defined('IN_PHPBB') )

View File

@@ -26,8 +26,8 @@ INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_whoi
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_change_style', '0');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_main_menu', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_user_menu', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_right_collumn_width', '180');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_left_collumn_width', '180');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_right_column_width', '180');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_left_column_width', '180');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_poll_topic', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_poll_topic_id', '');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_last_visited_bots_number', '1');

View File

@@ -52,4 +52,10 @@ $mod_update['0.3.0'] = array(
),
);
$sql_update['1.0.0RC1'] = array(
"UPDATE phpbb_portal_config SET config_name = 'portal_right_column_width' WHERE config_name = 'portal_right_collumn_width'",
"UPDATE phpbb_portal_config SET config_name = 'portal_left_column_width' WHERE config_name = 'portal_left_collumn_width'"
);
?>