Skip to content
Snippets Groups Projects
Commit 0dd16155 authored by Tim Steiner's avatar Tim Steiner
Browse files

Stop Zend_Filter_Input from doing htmlentities() to input

parent a1a7281a
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,8 @@ class Courses_EditController extends App_Controller_Action
'courseLetter' => array('Alpha', 'StringToUpper')
);
$validator = array();
$in = new Zend_Filter_Input($filter, $validator, $this->getRequest()->getParams());
$options = array('escapeFilter' => 'StringTrim');
$in = new Zend_Filter_Input($filter, $validator, $this->getRequest()->getParams(), $options);
$rawIn = $this->getRequest()->getParams();
$session = new Zend_Session_Namespace('Edit Request');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment