/data/webdev/3fixes/application/helpers/frontend_helper.php(58)
46 return false; 47 } 48 $oCriteria->params = $aParams; 49 $oResponses = SurveyDynamic::model($surveyid)->with('saved_control')->find($oCriteria); 50 51 if (!$oResponses) { 52 return false; 53 } 54 55 if (isset($oResponses->saved_control) && $oResponses->saved_control) { 56 $saved_control = $oResponses->saved_control; 57 $access_code = $oResponses->saved_control->access_code; 58 $md5_code = md5($sLoadPass); 59 $sha256_code = hash('sha256', $sLoadPass); 60 if ($md5_code === $access_code || $sha256_code === $access_code || password_verify($sLoadPass, $access_code)) { 61 //A match has been found. Let's load the values! 62 //If this is from an email, build surveysession first 63 $_SESSION['survey_' . $surveyid]['LEMtokenResume'] = true; 64 65 // If survey come from reload (GET or POST); some value need to be found on saved_control, not on survey 66 if (Yii::app()->request->getParam('loadall') === "reload") { 67 // We don't need to control if we have one, because we do the test before 68 $_SESSION['survey_' . $surveyid]['scid'] = $saved_control->scid; 69 $_SESSION['survey_' . $surveyid]['step'] = ($saved_control->saved_thisstep > 1) ? $saved_control->saved_thisstep : 1; 70 $thisstep = $_SESSION['survey_' . $surveyid]['step'] - 1; // deprecated ?
#0 |
+
–
/data/webdev/3fixes/application/controllers/survey/index.php(556): loadanswers() 551 // alloweditaftercompletion 552 if (!empty($oResponse->submitdate)) { 553 $_SESSION['survey_'.$surveyid]['maxstep'] = $_SESSION['survey_'.$surveyid]['totalsteps']; 554 } 555 556 loadanswers(); 557 randomizationGroupsAndQuestions($surveyid); 558 initFieldArray($surveyid, $_SESSION['survey_'.$surveyid]['fieldmap']); 559 } 560 } 561 } |
#1 |
+
–
/data/webdev/3fixes/application/controllers/survey/index.php(24): index->action() 19 public $oTemplate; 20 21 public function run() 22 { 23 useFirebug(); 24 $this->action(); 25 } 26 27 public function action() 28 { 29 global $surveyid; |
#2 |
+
–
/data/webdev/3fixes/framework/web/actions/CAction.php(76): index->run() 71 { 72 $method=new ReflectionMethod($this, 'run'); 73 if($method->getNumberOfParameters()>0) 74 return $this->runWithParamsInternal($this, $method, $params); 75 76 $this->run(); 77 return true; 78 } 79 80 /** 81 * Executes a method of an object with the supplied named parameters. |
#3 |
+
–
/data/webdev/3fixes/framework/web/CController.php(308): CAction->runWithParams(array("r" => "survey/index", "sid" => "847856", "token" => "TEST", "newtest" => "Y")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#4 |
+
–
/data/webdev/3fixes/framework/web/CController.php(286): CController->runAction(index) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#5 |
+
–
/data/webdev/3fixes/framework/web/CController.php(265): CController->runActionWithFilters(index, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#6 |
+
–
/data/webdev/3fixes/framework/web/CWebApplication.php(282): CController->run("index") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#7 |
+
–
/data/webdev/3fixes/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#8 |
+
–
/data/webdev/3fixes/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#9 |
+
–
/data/webdev/3fixes/index.php(194): CApplication->run() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ |