diff options
author | Ben Edmunds <ben.edmunds@gmail.com> | 2011-08-20 21:17:16 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-11-13 20:09:01 +0100 |
commit | a35e31c3ead0396e2a7c7be9b292c66a6457a1a0 (patch) | |
tree | 43c8f9fec313799e1d5236792a43c815fa4f34ff /system | |
parent | db5a5494018ed8fe83e8899ba583cdf6de9525af (diff) |
Resolved issue 65 - made action on form_open_multipart helper function call optional
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 47f93e748..d9305c00b 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -94,7 +94,7 @@ if ( ! function_exists('form_open')) */ if ( ! function_exists('form_open_multipart')) { - function form_open_multipart($action, $attributes = array(), $hidden = array()) + function form_open_multipart($action = '', $attributes = array(), $hidden = array()) { if (is_string($attributes)) { |