Skip to content

Instantly share code, notes, and snippets.

@legierski
Created October 9, 2012 19:38
Show Gist options
  • Save legierski/3860955 to your computer and use it in GitHub Desktop.
Save legierski/3860955 to your computer and use it in GitHub Desktop.
Fixing download helper in CodeIgniter 2.1.3
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
if ( ! function_exists('force_download2'))
{
function force_download2($filename = '', $data = '')
{
if (FALSE === strpos($filename, '.'))
{
$filename .= '.noextension';
}
force_download($filename, $data);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment