diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-17 14:43:09 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-17 14:43:09 +0200 |
commit | e30b3f7afafa2c016cf78cc8bb8a457c2dbcda8c (patch) | |
tree | 805c7d92c46d9f669a6eacda3cc7d36faab22116 /system/helpers/number_helper.php | |
parent | ae31eb5e75d914fc3ab622a7ac5c23eb1e6d9f9a (diff) | |
parent | 98fde46fb938694feb1f36e590c4cfa5c97c3261 (diff) |
Merge pull request #1300 from timw4mail/patch
Fix rest of the helpers
Diffstat (limited to 'system/helpers/number_helper.php')
-rw-r--r-- | system/helpers/number_helper.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/system/helpers/number_helper.php b/system/helpers/number_helper.php index 40da6e7bf..e49f2f7a0 100644 --- a/system/helpers/number_helper.php +++ b/system/helpers/number_helper.php @@ -37,14 +37,15 @@ // ------------------------------------------------------------------------ -/** - * Formats a numbers as bytes, based on size, and adds the appropriate suffix - * - * @param mixed // will be cast as int - * @return string - */ if ( ! function_exists('byte_format')) { + /** + * Formats a numbers as bytes, based on size, and adds the appropriate suffix + * + * @param mixed will be cast as int + * @param int + * @return string + */ function byte_format($num, $precision = 1) { $CI =& get_instance(); |