Skip to content

Commit

Permalink
Fix an erroneous variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
narfbg committed Nov 1, 2012
1 parent 7c4d106 commit 075f6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/helpers/form_helper.php
Expand Up @@ -621,7 +621,7 @@ function form_prep($str = '', $is_textarea = FALSE)
return str_replace(array('<', '>'), array('&lt;', '&gt;'), stripslashes($str));
}

return str_replace(array("'", '"'), array('&#39;', '&quot;'), stripslashes($data));
return str_replace(array("'", '"'), array('&#39;', '&quot;'), stripslashes($str));
}
}

Expand Down

0 comments on commit 075f6fa

Please sign in to comment.