diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-17 19:08:33 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-17 19:08:33 +0200 |
commit | 903f31bd683084d96909f2b14acadfe5c34b4c41 (patch) | |
tree | 3700f16dfc788bb4ae05ce05912754564565ab00 /system/helpers/html_helper.php | |
parent | e18de50dc1a4369aef18df9b368f8bfb0f9177d9 (diff) | |
parent | 164a1f28dd8f8093d260748e0d85fa714f232a57 (diff) |
Merge pull request #2447 from rlerdorf/develop
A few minor fixes and cleanups
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r-- | system/helpers/html_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 80a27876f..9990b4653 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -109,7 +109,7 @@ if ( ! function_exists('_list')) * @param int * @return string */ - function _list($type = 'ul', $list, $attributes = '', $depth = 0) + function _list($type = 'ul', $list = array(), $attributes = '', $depth = 0) { // If an array wasn't submitted there's nothing to do... if ( ! is_array($list)) @@ -399,4 +399,4 @@ if ( ! function_exists('nbs')) } /* End of file html_helper.php */ -/* Location: ./system/helpers/html_helper.php */
\ No newline at end of file +/* Location: ./system/helpers/html_helper.php */ |