You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function smarty_function_form($params, &$smarty)
{
//check if the needed function exists
//otherwise try to load it
if (!function_exists('form_open')) {
//return error message in case we can't get CI instance
if (!function_exists('get_instance')) return "Can't get CI instance";
$CI= &get;_instance();
$CI->load->helper('form');
}