diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 21:22:32 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 21:22:32 -0500 |
commit | 44fc9c081fb7561b7b02115f9b2a6eb0349d2201 (patch) | |
tree | 314249cc9a8dfc23ecb2d1bcc089362418698a96 /lib | |
parent | 565290fbf9e3727655921a969550167aa59a6e24 (diff) |
Add story points for tasks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/helper.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/helper.php b/lib/helper.php index 22121015..50071be1 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -230,3 +230,8 @@ function form_date($name, $values = array(), array $errors = array(), array $att { return form_input('date', $name, $values, $errors, $attributes, $class); } + +function form_number($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '') +{ + return form_input('number', $name, $values, $errors, $attributes, $class); +} |