summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-10-10 13:16:46 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-10-10 13:16:46 +0200
commit5c4260fa896544492a3cd7f91697a250b269bc20 (patch)
tree2eb3fe18e9ba803a5897cbe7bc7360b09e721625 /install.php
parenta51d08efe9c16c49f0a23b9044457945e73681e3 (diff)
downloadrpg-5c4260fa896544492a3cd7f91697a250b269bc20.tar.gz
rpg-5c4260fa896544492a3cd7f91697a250b269bc20.tar.bz2
fix user group name in install.php
darcs-hash:20061010111646-7ad00-9b0b08b448f0dcadebff784f27f0ec28d49cbc21.gz
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 46efd802b..b0d2bc7fd 100644
--- a/install.php
+++ b/install.php
@@ -302,10 +302,10 @@ EOT;
EOT;
if($d['policy'] == 2){
$output .= "* @ALL 0\n";
- $output .= "* @users 8\n";
+ $output .= "* @user 8\n";
}elseif($d['policy'] == 1){
$output .= "* @ALL 1\n";
- $output .= "* @users 8\n";
+ $output .= "* @user 8\n";
}else{
$output .= "* @ALL 8\n";
}