diff --git a/application/views/user_admin.xhtml b/application/views/user_admin.xhtml index ee5ddb0d33dae4666631d7d69dd99f2340d1560c..794efb93d51c5095d054859aa87c85ba96f4b088 100644 --- a/application/views/user_admin.xhtml +++ b/application/views/user_admin.xhtml @@ -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 } ?>