diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-08 20:38:53 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-08 20:38:53 +0100 |
commit | 53b8ef524529e6ca9f32ad49d36c5140df84feb0 (patch) | |
tree | 383e10c617709699ca9e275797e405afad458816 /system/helpers/html_helper.php | |
parent | f6d9a7cff222f868312a6d4ae4e4050616acb9a7 (diff) |
Polish docs for HTML, Inflector, Language, Number, Path, Security and Smiley helpers
Also fixed a DB_cache bug introduced in previous commit and removed an unused parameter in a smiley helper
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r-- | system/helpers/html_helper.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 404392f06..fa49f7d75 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -157,12 +157,12 @@ if ( ! function_exists('br')) /** * Generates HTML BR tags based on number supplied * - * @param int + * @param int $count Number of times to repeat the tag * @return string */ - function br($num = 1) + function br($count = 1) { - return str_repeat('<br />', $num); + return str_repeat('<br />', $count); } } |