Skip to content
Snippets Groups Projects
Commit 87d12594 authored by Tim Steiner's avatar Tim Steiner
Browse files

fixes for case sensitive file systems

parent bfa5cf26
No related branches found
No related tags found
No related merge requests found
......@@ -64,12 +64,12 @@
<h2>Editing Group: <?php echo $this->group->name; ?></h2>
<form action="/UserAdmin/EditGroup/<?php echo $this->group->getPrimaryKey(); ?>" method="post">
<label for="delete">
Delete: <?php echo $this->formCheckBox('delete', null, array('id' => 'delete')); ?>
Delete: <?php echo $this->formCheckbox('delete', null, array('id' => 'delete')); ?>
</label>
<label for="name">Name:</label>
<?php echo $this->formText('name', $this->group->name, array('size' => 32)); ?>
<label for="description">Description:</label>
<?php echo $this->formTextArea('description',
<?php echo $this->formTextarea('description',
$this->group->description,
array('rows' => 5, 'cols' => 50)); ?>
<label for="groups">Groups:</label>
......@@ -85,4 +85,4 @@
<?php echo $this->formSubmit('Submit', 'Submit'); ?>
</form>
</div>
<?php } ?>
\ No newline at end of file
<?php } ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment