*** empty log message ***

This commit is contained in:
katagia 2003-06-01 15:14:16 +00:00
parent 722ec7dbbe
commit 6e4b14036d
1 changed files with 5 additions and 3 deletions

View File

@ -164,7 +164,7 @@ switch ($select) {
break; break;
case 'create': case 'create':
$row=0; $row=0;
while ($row < sizeof($_SESSION['accounts'] $row!=-1) { while ($row < sizeof($_SESSION['accounts']) || $row!=-1) {
if (getgid($_SESSION['accounts'][$row]->general_group)==-1) { if (getgid($_SESSION['accounts'][$row]->general_group)==-1) {
$group = new account(); $group = new account();
$group->general_username=$_SESSION['accounts'][$row]->general_group; $group->general_username=$_SESSION['accounts'][$row]->general_group;
@ -177,15 +177,17 @@ switch ($select) {
else { else {
$row = -1; $row = -1;
StatusMessage('ERROR', _('Could not create user'), _('Was unable to create ').$_SESSION['accounts'][$row]->general_username); StatusMessage('ERROR', _('Could not create user'), _('Was unable to create ').$_SESSION['accounts'][$row]->general_username);
}
} }
if ($row=-1) echo '<tr><td><input name="cancel" type="submit" value="'; echo _('Cancel'); echo '">'; if ($row=-1) { echo '<tr><td><input name="cancel" type="submit" value="'; echo _('Cancel'); echo '">'; }
else { else {
echo '<tr><td>'; echo '<tr><td>';
echo _('All Users have been created'); echo _('All Users have been created');
echo '</td></tr><tr><td>'; echo '</td></tr><tr><td>';
echo '<tr><td><input name="cancel" type="submit" value="'; echo _('Mainmenu'); echo '">'; echo '<tr><td><input name="cancel" type="submit" value="'; echo _('Mainmenu'); echo '">';
echo '<tr><td><input name="pdf" type="submit" value="'; echo _('Create PDF-File'); echo '">'; echo '<tr><td><input name="pdf" type="submit" value="'; echo _('Create PDF-File'); echo '">';
break; }
break;
} }