diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-07-29 11:23:45 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-07-29 11:23:45 +0000 |
| commit | 06e1e97778788591c39618101253c02bfe0d0ead (patch) | |
| tree | 45cdb88dafe355beeee4a50d486db7a3737028cb /phpBB/admin/admin_board.php | |
| parent | 03f9b1f98ba4d0309457fb4df80eeb6f74e1123b (diff) | |
| download | forums-06e1e97778788591c39618101253c02bfe0d0ead.tar forums-06e1e97778788591c39618101253c02bfe0d0ead.tar.gz forums-06e1e97778788591c39618101253c02bfe0d0ead.tar.bz2 forums-06e1e97778788591c39618101253c02bfe0d0ead.tar.xz forums-06e1e97778788591c39618101253c02bfe0d0ead.zip | |
Missed options for global email disable and min/max chars for search indexing ...
git-svn-id: file:///svn/phpbb/trunk@2786 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_board.php')
| -rw-r--r-- | phpBB/admin/admin_board.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/admin/admin_board.php b/phpBB/admin/admin_board.php index 7104c017b8..0dbd7274df 100644 --- a/phpBB/admin/admin_board.php +++ b/phpBB/admin/admin_board.php @@ -405,6 +405,14 @@ switch ( $mode ) <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="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="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="row2"><input type="text" size="20" maxlength="255" name="smilies_path" value="<?php echo $new['smilies_path']; ?>" /></td> </tr> @@ -434,6 +442,9 @@ switch ( $mode ) case 'email': + $email_yes = ( $new['email_enable'] ) ? 'checked="checked"' : ''; + $email_no = ( !$new['email_enable'] ) ? 'checked="checked"' : ''; + $board_email_form_yes = ( $new['board_email_form'] ) ? 'checked="checked"' : ''; $board_email_form_no = ( !$new['board_email_form'] ) ? 'checked="checked"' : ''; @@ -442,6 +453,10 @@ 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="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="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> |
