summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-09-06 23:46:17 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-09-06 23:46:17 -0400
commit91c1ef1762b91fe59f8ce51cc1dde63855264f5d (patch)
treef4bc34a07a91817345ebc842b9b075c37b7cc03b
parent6f6cd6b1ede633a7db06b5e40919eb1cc4279713 (diff)
add 'paragraph' and 'checkbox' datatypes to individual.html.php's inputField()
-rw-r--r--src/views/pages/users/individual.html.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/views/pages/users/individual.html.php b/src/views/pages/users/individual.html.php
index 6b23e0e..0bf5bc9 100644
--- a/src/views/pages/users/individual.html.php
+++ b/src/views/pages/users/individual.html.php
@@ -44,6 +44,12 @@ function inputField($user, $arr) {
case 'textarea':
inputTextarea($user, $fieldname, $fieldlabel, '');
break;
+ case 'paragraph':
+ $t->inputP($fieldlabel);
+ break;
+ case 'checkbox':
+ inputBool($user, $fieldname, $fieldlabel, '');
+ break;
}
}