diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-03-21 22:43:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-03-21 22:43:07 +0000 |
commit | a4e51c9699c7a09bea32ad832a9818abba008801 (patch) | |
tree | 42feb7021db4bd9cb9334e65b23260d491d3b131 /phpBB/adm/admin_users.php | |
parent | 68b7397da8197d23dae07fc0e7927697cb1e3492 (diff) | |
download | forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.gz forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.bz2 forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.xz forums-a4e51c9699c7a09bea32ad832a9818abba008801.zip |
- first try to break things...
git-svn-id: file:///svn/phpbb/trunk@5108 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_users.php')
-rw-r--r-- | phpBB/adm/admin_users.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/admin_users.php b/phpBB/adm/admin_users.php index 1c2587c56e..eee887de42 100644 --- a/phpBB/adm/admin_users.php +++ b/phpBB/adm/admin_users.php @@ -1058,7 +1058,7 @@ function marklist(match, status) 'viewcensors' => false, 'bbcode' => true, 'html' => false, - 'smile' => true, + 'smilies' => true, 'attachsig' => true, ); @@ -1081,7 +1081,7 @@ function marklist(match, status) unset($data); // Set the popuppm option - $option_ary = array('popuppm', 'viewimg', 'viewflash', 'viewsmilies', 'viewsigs', 'viewavatars', 'viewcensors', 'bbcode', 'html', 'smile', 'attachsig'); + $option_ary = array('popuppm', 'viewimg', 'viewflash', 'viewsmilies', 'viewsigs', 'viewavatars', 'viewcensors', 'bbcode', 'html', 'smilies', 'attachsig'); foreach ($option_ary as $option) { @@ -1133,7 +1133,7 @@ function marklist(match, status) } unset($option_ary); - $option_ary = array('popuppm', 'viewimg', 'viewflash', 'viewsmilies', 'viewsigs', 'viewavatars', 'viewcensors', 'bbcode', 'html', 'smile', 'attachsig'); + $option_ary = array('popuppm', 'viewimg', 'viewflash', 'viewsmilies', 'viewsigs', 'viewavatars', 'viewcensors', 'bbcode', 'html', 'smilies', 'attachsig'); foreach ($option_ary as $option) { @@ -1210,8 +1210,8 @@ function marklist(match, status) <td class="row2"><input type="radio" name="html" value="1"<?php echo $html_yes; ?> /><span class="gen"><?php echo $user->lang['YES']; ?></span> <input type="radio" name="html" value="0"<?php echo $html_no; ?> /><span class="gen"><?php echo $user->lang['NO']; ?></span></td> </tr> <tr> - <td class="row1"><b><?php echo $user->lang['DEFAULT_SMILE']; ?>:</b></td> - <td class="row2"><input type="radio" name="smile" value="1"<?php echo $smile_yes; ?> /><span class="gen"><?php echo $user->lang['YES']; ?></span> <input type="radio" name="smile" value="0"<?php echo $smile_no; ?> /><span class="gen"><?php echo $user->lang['NO']; ?></span></td> + <td class="row1"><b><?php echo $user->lang['DEFAULT_SMILIES']; ?>:</b></td> + <td class="row2"><input type="radio" name="smilies" value="1"<?php echo $smilies_yes; ?> /><span class="gen"><?php echo $user->lang['YES']; ?></span> <input type="radio" name="smilies" value="0"<?php echo $smilies_no; ?> /><span class="gen"><?php echo $user->lang['NO']; ?></span></td> </tr> <tr> <td class="row1"><b><?php echo $user->lang['DEFAULT_ADD_SIG']; ?>:</b></td> |