diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-06 23:58:27 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-08-06 23:58:27 +0000 |
commit | d299df3b256f77d5205630849354fad61e8762ed (patch) | |
tree | e11748b6268463a4a15527a87054f7c4eceae6c7 /phpBB | |
parent | 6e6c85b9b7f43723d2b113736a5ff109e655fe05 (diff) | |
download | forums-d299df3b256f77d5205630849354fad61e8762ed.tar forums-d299df3b256f77d5205630849354fad61e8762ed.tar.gz forums-d299df3b256f77d5205630849354fad61e8762ed.tar.bz2 forums-d299df3b256f77d5205630849354fad61e8762ed.tar.xz forums-d299df3b256f77d5205630849354fad61e8762ed.zip |
Various updates ...
git-svn-id: file:///svn/phpbb/trunk@2831 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/admin/admin_ban.php | 10 | ||||
-rw-r--r-- | phpBB/admin/admin_board.php | 124 |
2 files changed, 67 insertions, 67 deletions
diff --git a/phpBB/admin/admin_ban.php b/phpBB/admin/admin_ban.php index 7123d3db20..3214c38589 100644 --- a/phpBB/admin/admin_ban.php +++ b/phpBB/admin/admin_ban.php @@ -146,7 +146,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) ) $ip_2_counter = 256; $ip_2_fragment = 256; - $banlist[] = "'$ip_1_counter.'"; + $banlist[] = "'$ip_1_counter.*'"; } while ( $ip_2_counter <= $ip_2_end ) @@ -159,7 +159,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) ) $ip_3_counter = 256; $ip_3_fragment = 256; - $banlist[] = "'$ip_1_counter.$ip_2_counter.'"; + $banlist[] = "'$ip_1_counter.$ip_2_counter.*'"; } while ( $ip_3_counter <= $ip_3_end ) @@ -172,7 +172,7 @@ if ( isset($HTTP_POST_VARS['bansubmit']) ) $ip_4_counter = 256; $ip_4_fragment = 256; - $banlist[] = "'$ip_1_counter.$ip_2_counter.$ip_3_counter.'"; + $banlist[] = "'$ip_1_counter.$ip_2_counter.$ip_3_counter.*'"; } while ( $ip_4_counter <= $ip_4_end ) @@ -199,9 +199,9 @@ if ( isset($HTTP_POST_VARS['bansubmit']) ) } } } - else if ( preg_match('/^([0-9]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})$/', trim($ban_list[$i])) ) + else if ( preg_match('/^([0-9]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})\.([0-9\*]{1,3})$/', trim($ban_list[$i])) || preg_match('/^[a-f0-9:]+\*?$/i', trim($ban_list[$i])) ) { - $banlist[] = '\'' . str_replace('*', '', trim($ban_list[$i])) . '\''; + $banlist[] = '\'' . trim($ban_list[$i]) . '\''; } } break; diff --git a/phpBB/admin/admin_board.php b/phpBB/admin/admin_board.php index 05fb059f8b..4fa8f5ad79 100644 --- a/phpBB/admin/admin_board.php +++ b/phpBB/admin/admin_board.php @@ -152,23 +152,23 @@ switch ( $mode ) ?> <tr> - <td class="row1" width="50%"><?php echo $lang['Cookie_domain']; ?></td> + <td class="row1" width="50%"><?php echo $lang['Cookie_domain']; ?>: </td> <td class="row2"><input type="text" maxlength="255" name="cookie_domain" value="<?php echo $new['cookie_domain']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Cookie_name']; ?></td> + <td class="row1"><?php echo $lang['Cookie_name']; ?>: </td> <td class="row2"><input type="text" maxlength="16" name="cookie_name" value="<?php echo $new['cookie_name']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Cookie_path']; ?></td> + <td class="row1"><?php echo $lang['Cookie_path']; ?>: </td> <td class="row2"><input type="text" maxlength="255" name="cookie_path" value="<?php echo $new['cookie_path']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Cookie_secure']; ?><br /><span class="gensmall"><?php echo $lang['Cookie_secure_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Cookie_secure']; ?>: <br /><span class="gensmall"><?php echo $lang['Cookie_secure_explain']; ?></span></td> <td class="row2"><input type="radio" name="cookie_secure" value="0"<?php echo $cookie_secure_no; ?> /><?php echo $lang['Disabled']; ?> <input type="radio" name="cookie_secure" value="1"<?php echo $cookie_secure_yes; ?> /><?php echo $lang['Enabled']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Session_length']; ?></td> + <td class="row1"><?php echo $lang['Session_length']; ?>: </td> <td class="row2"><input type="text" maxlength="5" size="5" name="session_length" value="<?php echo $new['session_length']; ?>" /></td> </tr> <?php @@ -186,31 +186,31 @@ switch ( $mode ) ?> <tr> - <td class="row1" width="50%"><?php echo $lang['Allow_local']; ?></td> + <td class="row1" width="50%"><?php echo $lang['Allow_local']; ?>: </td> <td class="row2"><input type="radio" name="allow_avatar_local" value="1"<?php echo $avatars_local_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_avatar_local" value="0"<?php echo $avatars_local_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_remote']; ?> <br /><span class="gensmall"><?php echo $lang['Allow_remote_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Allow_remote']; ?>: <br /><span class="gensmall"><?php echo $lang['Allow_remote_explain']; ?></span></td> <td class="row2"><input type="radio" name="allow_avatar_remote" value="1"<?php echo $avatars_remote_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_avatar_remote" value="0"<?php echo $avatars_remote_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_upload']; ?></td> + <td class="row1"><?php echo $lang['Allow_upload']; ?>: </td> <td class="row2"><input type="radio" name="allow_avatar_upload" value="1"<?php echo $avatars_upload_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_avatar_upload" value="0"<?php echo $avatars_upload_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Max_filesize']; ?><br /><span class="gensmall"><?php echo $lang['Max_filesize_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Max_filesize']; ?>: <br /><span class="gensmall"><?php echo $lang['Max_filesize_explain']; ?></span></td> <td class="row2"><input type="text" size="4" maxlength="10" name="avatar_filesize" value="<?php echo $new['avatar_filesize']; ?>" /> Bytes</td> </tr> <tr> - <td class="row1"><?php echo $lang['Max_avatar_size']; ?> <br /><span class="gensmall"><?php echo $lang['Max_avatar_size_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Max_avatar_size']; ?>: <br /><span class="gensmall"><?php echo $lang['Max_avatar_size_explain']; ?></span></td> <td class="row2"><input type="text" size="3" maxlength="4" name="avatar_max_height" value="<?php echo $new['avatar_max_height']; ?>" /> x <input type="text" size="3" maxlength="4" name="avatar_max_width" value="<?php echo $new['avatar_max_width']; ?>"></td> </tr> <tr> - <td class="row1"><?php echo $lang['Avatar_storage_path']; ?> <br /><span class="gensmall"><?php echo $lang['Avatar_storage_path_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Avatar_storage_path']; ?>: <br /><span class="gensmall"><?php echo $lang['Avatar_storage_path_explain']; ?></span></td> <td class="row2"><input type="text" size="20" maxlength="255" name="avatar_path" value="<?php echo $new['avatar_path']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Avatar_gallery_path']; ?> <br /><span class="gensmall"><?php echo $lang['Avatar_gallery_path_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Avatar_gallery_path']; ?>: <br /><span class="gensmall"><?php echo $lang['Avatar_gallery_path_explain']; ?></span></td> <td class="row2"><input type="text" size="20" maxlength="255" name="avatar_gallery_path" value="<?php echo $new['avatar_gallery_path']; ?>" /></td> </tr> <?php @@ -253,63 +253,63 @@ switch ( $mode ) <td class="row2"><?php echo $style_select; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Override_style']; ?><br /><span class="gensmall"><?php echo $lang['Override_style_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Override_style']; ?>: <br /><span class="gensmall"><?php echo $lang['Override_style_explain']; ?></span></td> <td class="row2"><input type="radio" name="override_user_style" value="1" <?php echo $override_user_style_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="override_user_style" value="0" <?php echo $override_user_style_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Default_language']; ?></td> + <td class="row1"><?php echo $lang['Default_language']; ?>: </td> <td class="row2"><?php echo $lang_select; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Date_format']; ?><br /><span class="gensmall"><?php echo $lang['Date_format_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Date_format']; ?>: <br /><span class="gensmall"><?php echo $lang['Date_format_explain']; ?></span></td> <td class="row2"><input type="text" name="default_dateformat" value="<?php echo $new['default_dateformat']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['System_timezone']; ?></td> + <td class="row1"><?php echo $lang['System_timezone']; ?>: </td> <td class="row2"><?php echo $timezone_select; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Char_limit']; ?><br /><span class="gensmall"><?php echo $lang['Char_limit_explain']; ?></span</td> + <td class="row1"><?php echo $lang['Char_limit']; ?><br />: <span class="gensmall"><?php echo $lang['Char_limit_explain']; ?></span</td> <td class="row2"><input type="text" size="4" maxlength="4" name="max_post_chars" value="<?php echo $new['max_post_chars']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Smilies_limit']; ?><br /><span class="gensmall"><?php echo $lang['Smilies_limit_explain']; ?></span</td> + <td class="row1"><?php echo $lang['Smilies_limit']; ?>: <br /><span class="gensmall"><?php echo $lang['Smilies_limit_explain']; ?></span</td> <td class="row2"><input type="text" size="4" maxlength="4" name="max_post_smilies" value="<?php echo $new['max_post_smilies']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_topic_notify']; ?></td> + <td class="row1"><?php echo $lang['Allow_topic_notify']; ?>: </td> <td class="row2"><input type="radio" name="allow_topic_notify" value="1" <?php echo $topic_notify_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_topic_notify" value="0" <?php echo $topic_notify_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_forum_notify']; ?></td> + <td class="row1"><?php echo $lang['Allow_forum_notify']; ?>: </td> <td class="row2"><input type="radio" name="allow_forum_notify" value="1" <?php echo $forum_notify_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_forum_notify" value="0" <?php echo $forum_notify_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_name_change']; ?></td> + <td class="row1"><?php echo $lang['Allow_name_change']; ?>: </td> <td class="row2"><input type="radio" name="allow_namechange" value="1" <?php echo $namechange_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_namechange" value="0" <?php echo $namechange_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_HTML']; ?></td> + <td class="row1"><?php echo $lang['Allow_HTML']; ?>: </td> <td class="row2"><input type="radio" name="allow_html" value="1" <?php echo $html_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_html" value="0" <?php echo $html_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allowed_tags']; ?><br /><span class="gensmall"><?php echo $lang['Allowed_tags_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Allowed_tags']; ?>: <br /><span class="gensmall"><?php echo $lang['Allowed_tags_explain']; ?></span></td> <td class="row2"><input type="text" size="30" maxlength="255" name="allow_html_tags" value="<?php echo $new['allow_html_tags']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_BBCode']; ?></td> + <td class="row1"><?php echo $lang['Allow_BBCode']; ?>: </td> <td class="row2"><input type="radio" name="allow_bbcode" value="1" <?php echo $bbcode_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_bbcode" value="0" <?php echo $bbcode_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_smilies']; ?></td> + <td class="row1"><?php echo $lang['Allow_smilies']; ?>: </td> <td class="row2"><input type="radio" name="allow_smilies" value="1" <?php echo $smile_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_smilies" value="0" <?php echo $smile_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Allow_sig']; ?></td> + <td class="row1"><?php echo $lang['Allow_sig']; ?>: </td> <td class="row2"><input type="radio" name="allow_sig" value="1" <?php echo $sig_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="allow_sig" value="0" <?php echo $sig_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Max_sig_length']; ?><br /><span class="gensmall"><?php echo $lang['Max_sig_length_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Max_sig_length']; ?>: <br /><span class="gensmall"><?php echo $lang['Max_sig_length_explain']; ?></span></td> <td class="row2"><input type="text" size="5" maxlength="4" name="max_sig_chars" value="<?php echo $new['max_sig_chars']; ?>" /></td> </tr> <?php @@ -340,99 +340,99 @@ switch ( $mode ) ?> <tr> - <td class="row1" width="50%"><?php echo $lang['Site_name']; ?></td> + <td class="row1" width="50%"><?php echo $lang['Site_name']; ?>: </td> <td class="row2"><input type="text" size="40" maxlength="255" name="sitename" value="<?php echo htmlentities($new['sitename']); ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Site_desc']; ?></td> + <td class="row1"><?php echo $lang['Site_desc']; ?>: </td> <td class="row2"><input type="text" size="40" maxlength="255" name="site_desc" value="<?php echo htmlentities($new['site_desc']); ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Board_disable']; ?><br /><span class="gensmall"><?php echo $lang['Board_disable_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Board_disable']; ?>: <br /><span class="gensmall"><?php echo $lang['Board_disable_explain']; ?></span></td> <td class="row2"><input type="radio" name="board_disable" value="1" <?php echo $disable_board_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="board_disable" value="0" <?php echo $disable_board_no; ?> /> <?php echo $lang['No']; ?><br /><input type="text" name="board_disable_msg" maxlength="255" size="40" value="<?php echo $new['board_disable_msg']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Limit_load']; ?><br /><span class="gensmall"><?php echo $lang['Limit_load_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Limit_load']; ?>: <br /><span class="gensmall"><?php echo $lang['Limit_load_explain']; ?></span></td> <td class="row2"><input type="text" size="4" maxlength="4" name="limit_load" value="<?php echo $new['limit_load']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Limit_sessions']; ?><br /><span class="gensmall"><?php echo $lang['Limit_sessions_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Limit_sessions']; ?>: <br /><span class="gensmall"><?php echo $lang['Limit_sessions_explain']; ?></span></td> <td class="row2"><input type="text" size="4" maxlength="4" name="active_sessions" value="<?php echo $new['active_sessions']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Enable_gzip']; ?></td> + <td class="row1"><?php echo $lang['Enable_gzip']; ?>: </td> <td class="row2"><input type="radio" name="gzip_compress" value="1" <?php echo $gzip_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="gzip_compress" value="0" <?php echo $gzip_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Enable_prune']; ?></td> + <td class="row1"><?php echo $lang['Enable_prune']; ?>: </td> <td class="row2"><input type="radio" name="prune_enable" value="1" <?php echo $prune_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="prune_enable" value="0" <?php echo $prune_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Acct_activation']; ?><br /><span class="gensmall"><?php echo $lang['Acct_activation_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Acct_activation']; ?>: <br /><span class="gensmall"><?php echo $lang['Acct_activation_explain']; ?></span></td> <td class="row2"><input type="radio" name="require_activation" value="<?php echo USER_ACTIVATION_NONE; ?>" <?php echo $activation_none; ?> /><?php echo $lang['Acc_None']; ?> <input type="radio" name="require_activation" value="<?php echo USER_ACTIVATION_SELF; ?>" <?php echo $activation_user; ?> /><?php echo $lang['Acc_User']; ?> <input type="radio" name="require_activation" value="<?php echo USER_ACTIVATION_ADMIN; ?>" <?php echo $activation_admin; ?> /><?php echo $lang['Acc_Admin']; ?> <input type="radio" name="require_activation" value="<?php echo USER_ACTIVATION_DISABLE; ?>" <?php echo $activation_disable; ?> /><?php echo $lang['Acc_Disable']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Enable_COPPA']; ?><br /><span class="gensmall"><?php echo $lang['Enable_COPPA_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Enable_COPPA']; ?>: <br /><span class="gensmall"><?php echo $lang['Enable_COPPA_explain']; ?></span></td> <td class="row2"><input type="radio" name="coppa_enable" value="1" <?php echo $coppa_enable_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="coppa_enable" value="0" <?php echo $coppa_enable_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['COPPA_fax']; ?></td> + <td class="row1"><?php echo $lang['COPPA_fax']; ?>: </td> <td class="row2"><input type="text" size="25" maxlength="100" name="coppa_fax" value="<?php echo $new['coppa_fax']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['COPPA_mail']; ?><br /><span class="gensmall"><?php echo $lang['COPPA_mail_explain']; ?></span></td> + <td class="row1"><?php echo $lang['COPPA_mail']; ?>: <br /><span class="gensmall"><?php echo $lang['COPPA_mail_explain']; ?></span></td> <td class="row2"><textarea name="coppa_mail" rows="5" cols="40"><?php echo $new['coppa_mail']; ?></textarea></td> </tr> <tr> - <td class="row1"><?php echo $lang['Private_Messaging']; ?></td> + <td class="row1"><?php echo $lang['Private_Messaging']; ?>: </td> <td class="row2"><input type="radio" name="privmsg_disable" value="0" <?php echo $privmsg_on; ?> /><?php echo $lang['Enabled']; ?> <input type="radio" name="privmsg_disable" value="1" <?php echo $privmsg_off; ?> /><?php echo $lang['Disabled']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Boxes_max']; ?><br /><span class="gensmall"><?php echo $lang['Boxes_max_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Boxes_max']; ?>: <br /><span class="gensmall"><?php echo $lang['Boxes_max_explain']; ?></span></td> <td class="row2"><input type="text" maxlength="4" size="4" name="pm_max_boxes" value="<?php echo $new['pm_max_boxes']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Boxes_limit']; ?><br /><span class="gensmall"><?php echo $lang['Boxes_limit_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Boxes_limit']; ?>: <br /><span class="gensmall"><?php echo $lang['Boxes_limit_explain']; ?></span></td> <td class="row2"><input type="text" maxlength="4" size="4" name="pm_max_msgs" value="<?php echo $new['pm_max_msgs']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Flood_Interval']; ?> <br /><span class="gensmall"><?php echo $lang['Flood_Interval_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Flood_Interval']; ?>: <br /><span class="gensmall"><?php echo $lang['Flood_Interval_explain']; ?></span></td> <td class="row2"><input type="text" size="3" maxlength="4" name="flood_interval" value="<?php echo $new['flood_interval']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Search_Interval']; ?> <br /><span class="gensmall"><?php echo $lang['Search_Interval_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Search_Interval']; ?>: <br /><span class="gensmall"><?php echo $lang['Search_Interval_explain']; ?></span></td> <td class="row2"><input type="text" size="3" maxlength="4" name="search_interval" value="<?php echo $new['search_interval']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Min_search_chars']; ?><br /><span class="gensmall"><?php echo $lang['Min_search_chars_explain']; ?></span</td> + <td class="row1"><?php echo $lang['Min_search_chars']; ?>: <br /><span class="gensmall"><?php echo $lang['Min_search_chars_explain']; ?></span</td> <td class="row2"><input type="text" size="3" maxlength="3" name="min_search_chars" value="<?php echo $new['min_search_chars']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Max_search_chars']; ?><br /><span class="gensmall"><?php echo $lang['Max_search_chars_explain']; ?></span</td> + <td class="row1"><?php echo $lang['Max_search_chars']; ?>: <br /><span class="gensmall"><?php echo $lang['Max_search_chars_explain']; ?></span</td> <td class="row2"><input type="text" size="3" maxlength="3" name="max_search_chars" value="<?php echo $new['max_search_chars']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Smilies_path']; ?> <br /><span class="gensmall"><?php echo $lang['Smilies_path_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Smilies_path']; ?>: <br /><span class="gensmall"><?php echo $lang['Smilies_path_explain']; ?></span></td> <td class="row2"><input type="text" size="20" maxlength="255" name="smilies_path" value="<?php echo $new['smilies_path']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Icons_path']; ?> <br /><span class="gensmall"><?php echo $lang['Icons_path_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Icons_path']; ?>: <br /><span class="gensmall"><?php echo $lang['Icons_path_explain']; ?></span></td> <td class="row2"><input type="text" size="20" maxlength="255" name="icons_path" value="<?php echo $new['icons_path']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Topics_per_page']; ?></td> + <td class="row1"><?php echo $lang['Topics_per_page']; ?>: </td> <td class="row2"><input type="text" name="topics_per_page" size="3" maxlength="4" value="<?php echo $new['topics_per_page']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Posts_per_page']; ?></td> + <td class="row1"><?php echo $lang['Posts_per_page']; ?>: </td> <td class="row2"><input type="text" name="posts_per_page" size="3" maxlength="4" value="<?php echo $new['posts_per_page']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Hot_threshold']; ?></td> + <td class="row1"><?php echo $lang['Hot_threshold']; ?>: </td> <td class="row2"><input type="text" name="hot_threshold" size="3" maxlength="4" value="<?php echo $new['hot_threshold']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Max_poll_options']; ?></td> + <td class="row1"><?php echo $lang['Max_poll_options']; ?>: </td> <td class="row2"><input type="text" name="max_poll_options" size="4" maxlength="4" value="<?php echo $new['max_poll_options']; ?>" /></td> </tr> <?php @@ -452,35 +452,35 @@ switch ( $mode ) ?> <tr> - <td class="row1"><?php echo $lang['Enable_email']; ?><br /><span class="gensmall"><?php echo $lang['Enable_email_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Enable_email']; ?>: <br /><span class="gensmall"><?php echo $lang['Enable_email_explain']; ?></span></td> <td class="row2"><input type="radio" name="email_enable" value="1" <?php echo $email_yes; ?> /> <?php echo $lang['Enabled']; ?> <input type="radio" name="email_enable" value="0" <?php echo $email_no; ?> /> <?php echo $lang['Disabled']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['Board_email_form']; ?><br /><span class="gensmall"><?php echo $lang['Board_email_form_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Board_email_form']; ?>: <br /><span class="gensmall"><?php echo $lang['Board_email_form_explain']; ?></span></td> <td class="row2"><input type="radio" name="board_email_form" value="1" <?php echo $board_email_form_yes; ?> /> <?php echo $lang['Enabled']; ?> <input type="radio" name="board_email_form" value="0" <?php echo $board_email_form_no; ?> /> <?php echo $lang['Disabled']; ?></td> </tr> <tr> - <td class="row1" width="50%"><?php echo $lang['Admin_email']; ?></td> + <td class="row1" width="50%"><?php echo $lang['Admin_email']; ?>: </td> <td class="row2"><input type="text" size="25" maxlength="100" name="board_email" value="<?php echo $new['board_email']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Email_sig']; ?><br /><span class="gensmall"><?php echo $lang['Email_sig_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Email_sig']; ?>: <br /><span class="gensmall"><?php echo $lang['Email_sig_explain']; ?></span></td> <td class="row2"><textarea name="board_email_sig" rows="5" cols="30"><?php echo $new['board_email_sig']; ?></textarea></td> </tr> <tr> - <td class="row1"><?php echo $lang['Use_SMTP']; ?><br /><span class="gensmall"><?php echo $lang['Use_SMTP_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Use_SMTP']; ?>: <br /><span class="gensmall"><?php echo $lang['Use_SMTP_explain']; ?></span></td> <td class="row2"><input type="radio" name="smtp_delivery" value="1" <?php echo $smtp_yes; ?> /> <?php echo $lang['Yes']; ?> <input type="radio" name="smtp_delivery" value="0" <?php echo $smtp_no; ?> /> <?php echo $lang['No']; ?></td> </tr> <tr> - <td class="row1"><?php echo $lang['SMTP_server']; ?></td> + <td class="row1"><?php echo $lang['SMTP_server']; ?>: </td> <td class="row2"><input type="text" name="smtp_host" value="<?php echo $new['smtp_host']; ?>" size="25" maxlength="50" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['SMTP_username']; ?><br /><span class="gensmall"><?php echo $lang['SMTP_username_explain']; ?></span></td> + <td class="row1"><?php echo $lang['SMTP_username']; ?>: <br /><span class="gensmall"><?php echo $lang['SMTP_username_explain']; ?></span></td> <td class="row2"><input type="text" name="smtp_username" value="<?php echo $new['smtp_username']; ?>" size="25" maxlength="255" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['SMTP_password']; ?><br /><span class="gensmall"><?php echo $lang['SMTP_password_explain']; ?></span></td> + <td class="row1"><?php echo $lang['SMTP_password']; ?>: <br /><span class="gensmall"><?php echo $lang['SMTP_password_explain']; ?></span></td> <td class="row2"><input type="password" name="smtp_password" value="<?php echo $new['smtp_password']; ?>" size="25" maxlength="255" /></td> </tr> <?php @@ -491,15 +491,15 @@ switch ( $mode ) ?> <tr> - <td class="row1"><?php echo $lang['Server_name']; ?><br /><span class="gensmall"><?php echo $lang['Server_name_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Server_name']; ?>: <br /><span class="gensmall"><?php echo $lang['Server_name_explain']; ?></span></td> <td class="row2"><input type="text" maxlength="255" size="40" name="server_name" value="<?php echo $new['server_name']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Server_port']; ?><br /><span class="gensmall"><?php echo $lang['Server_port_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Server_port']; ?>: <br /><span class="gensmall"><?php echo $lang['Server_port_explain']; ?></span></td> <td class="row2"><input type="text" maxlength="5" size="5" name="server_port" value="<?php echo $new['server_port']; ?>" /></td> </tr> <tr> - <td class="row1"><?php echo $lang['Script_path']; ?><br /><span class="gensmall"><?php echo $lang['Script_path_explain']; ?></span></td> + <td class="row1"><?php echo $lang['Script_path']; ?>: <br /><span class="gensmall"><?php echo $lang['Script_path_explain']; ?></span></td> <td class="row2"><input type="text" maxlength="255" name="script_path" value="<?php echo $new['script_path']; ?>" /></td> </tr> <?php |