From 87d12594ce24f096fb8bff094c8a997555c355b0 Mon Sep 17 00:00:00 2001
From: Tim Steiner <tsteiner2@unl.edu>
Date: Wed, 15 Nov 2006 20:55:22 +0000
Subject: [PATCH] fixes for case sensitive file systems

---
 application/views/user_admin.xhtml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/application/views/user_admin.xhtml b/application/views/user_admin.xhtml
index ee5ddb0d..794efb93 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 } ?>
-- 
GitLab