diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 17:47:35 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 17:47:35 +0200 |
commit | fe11f14a62a5a761c790621c7c3f5a79d9d0c741 (patch) | |
tree | d34d5e987196bccd19684388e4f161c8a66269b5 /system/helpers/download_helper.php | |
parent | 2fbd57d6d58afd64caa841a876e9773272275526 (diff) | |
parent | 01b129a42b62fd08cd873f44ded026041b560420 (diff) |
Merge pull request #1299 from timw4mail/patch
Fix helper docblocks
Diffstat (limited to 'system/helpers/download_helper.php')
-rw-r--r-- | system/helpers/download_helper.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php index 8b87f8179..97e6986b0 100644 --- a/system/helpers/download_helper.php +++ b/system/helpers/download_helper.php @@ -37,18 +37,18 @@ // ------------------------------------------------------------------------ -/** - * Force Download - * - * Generates headers that force a download to happen - * - * @param string filename - * @param mixed the data to be downloaded - * @param bool wether to try and send the actual file MIME type - * @return void - */ if ( ! function_exists('force_download')) { + /** + * Force Download + * + * Generates headers that force a download to happen + * + * @param string filename + * @param mixed the data to be downloaded + * @param bool wether to try and send the actual file MIME type + * @return void + */ function force_download($filename = '', $data = '', $set_mime = FALSE) { if ($filename == '' OR $data == '') |