aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-31 15:43:29 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-31 15:43:29 +0000
commit849285d9eb16454c2d6d808425fcceb0ed50fa0c (patch)
tree1d9f9df15fbc353ddbc919bf26b09c7fc82773a7 /phpBB/admin
parent1fe3a6a206f6c9090036471e09d62cc28e5f082a (diff)
downloadforums-849285d9eb16454c2d6d808425fcceb0ed50fa0c.tar
forums-849285d9eb16454c2d6d808425fcceb0ed50fa0c.tar.gz
forums-849285d9eb16454c2d6d808425fcceb0ed50fa0c.tar.bz2
forums-849285d9eb16454c2d6d808425fcceb0ed50fa0c.tar.xz
forums-849285d9eb16454c2d6d808425fcceb0ed50fa0c.zip
forgot conditional on group_type
git-svn-id: file:///svn/phpbb/trunk@3447 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r--phpBB/admin/admin_groups.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/admin/admin_groups.php b/phpBB/admin/admin_groups.php
index ad682f7cf4..e160fba4a7 100644
--- a/phpBB/admin/admin_groups.php
+++ b/phpBB/admin/admin_groups.php
@@ -126,10 +126,21 @@ switch ($action)
<td class="row2"><?php echo $user->lang['GROUP_DESC']; ?>:</td>
<td class="row1"><input type="text" name="group_description" value="<?php echo (!empty($group_description)) ? $group_description : ''; ?>" size="40" maxlength="255" /></td>
</tr>
+<?php
+
+ if ($group_type != GROUP_SPECIAL)
+ {
+
+?>
<tr>
<td class="row2"><?php echo $user->lang['GROUP_TYPE']; ?>:<br /><span class="gensmall"><?php echo $user->lang['GROUP_TYPE_EXPLAIN']; ?></span></td>
<td class="row1" nowrap="nowrap"><input type="radio" name="group_type" value="<?php echo GROUP_FREE . '"' . $type_free; ?> /> <?php echo $user->lang['GROUP_OPEN']; ?> &nbsp; <input type="radio" name="group_type" value="<?php echo GROUP_OPEN . '"' . $type_open; ?> /> <?php echo $user->lang['GROUP_REQUEST']; ?> &nbsp; <input type="radio" name="group_type" value="<?php echo GROUP_CLOSED . '"' . $type_closed; ?> /> <?php echo $user->lang['GROUP_CLOSED']; ?> &nbsp; <input type="radio" name="group_type" value="<?php echo GROUP_HIDDEN . '"' . $type_hidden; ?> /> <?php echo $user->lang['GROUP_HIDDEN']; ?></td>
</tr>
+<?php
+
+ }
+
+?>
<tr>
<th colspan="2"><?php echo $user->lang['GROUP_SETTINGS_SAVE']; ?></th>
</tr>