/installpath/limesurvey-build130219/framework/db/CDbCommand.php(528)
516 return $result; 517 } 518 catch(Exception $e) 519 { 520 if($this->_connection->enableProfiling) 521 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 522 $errorInfo = $e instanceof PDOException ? $e->errorInfo : null; 523 $message = $e->getMessage(); 524 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 525 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 526 if(YII_DEBUG) 527 $message .= '. The SQL statement executed was: '.$this->getText().$par; 528 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 529 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 530 } 531 } 532 533 /** 534 * Builds a SQL SELECT statement from the given query specification. 535 * @param array $query the query specification in name-value pairs. The following 536 * query options are supported: {@link select}, {@link distinct}, {@link from}, 537 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 538 * {@link limit}, {@link offset} and {@link union}. 539 * @return string the SQL statement 540 * @since 1.1.6
#0 |
+
–
/installpath/limesurvey-build130219/framework/db/CDbCommand.php(372): CDbCommand->queryInternal("", 0, array()) 367 * @return CDbDataReader the reader object for fetching the query result 368 * @throws CException execution failed 369 */ 370 public function query($params=array()) 371 { 372 return $this->queryInternal('',0,$params); 373 } 374 375 /** 376 * Executes the SQL statement and returns all rows. 377 * @param boolean $fetchAssociative whether each row should be returned as an associated array with |
#1 |
+
–
/installpath/limesurvey-build130219/application/helpers/qanda_helper.php(1436): CDbCommand->query() 1431 else 1432 { 1433 $ansquery = "SELECT * FROM {{answers}} WHERE qid=$ia[0] AND language='".$_SESSION['survey_'.Yii::app()->getConfig('surveyID')]['s_lang']."' and scale_id=0 ORDER BY sortorder, answer"; 1434 } 1435 1436 $ansresult = Yii::app()->db->createCommand($ansquery)->query() or safeDie('Couldn\'t get answers<br />'.$ansquery.'<br />'); //Checked 1437 $ansresult= $ansresult->readAll(); 1438 $dropdownSize = ''; 1439 if (isset($aQuestionAttributes['dropdown_size']) && $aQuestionAttributes['dropdown_size'] > 0) 1440 { 1441 $_height = sanitize_int($aQuestionAttributes['dropdown_size']) ; |
#2 |
+
–
/installpath/limesurvey-build130219/application/helpers/qanda_helper.php(137): do_list_dropdown(array("2", "654567X2X2", "Organization", "What is your organization?", ...)) 132 . $clang->gT('Choose one of the following answers').'</span>'; 133 $question_text['help'] = $clang->gT('Choose one of the following answers'); 134 } 135 break; 136 case '!': //List - dropdown 137 $values=do_list_dropdown($ia); 138 if ($aQuestionAttributes['hide_tip']==0) 139 { 140 $qtitle .= "<br />\n<span class=\"questionhelp\">" 141 . $clang->gT('Choose one of the following answers').'</span>'; 142 $question_text['help'] = $clang->gT('Choose one of the following answers'); |
#3 |
+
–
/installpath/limesurvey-build130219/application/helpers/SurveyRuntimeHelper.php(672): retrieveAnswers(array("2", "654567X2X2", "Organization", "What is your organization?", ...), "654567") 667 } 668 669 //Get the answers/inputnames 670 // TMSW - can content of retrieveAnswers() be provided by LEM? Review scope of what it provides. 671 // TODO - retrieveAnswers is slow - queries database separately for each question. May be fixed in _CI or _YII ports, so ignore for now 672 list($plus_qanda, $plus_inputnames) = retrieveAnswers($ia, $surveyid); 673 if ($plus_qanda) 674 { 675 $plus_qanda[] = $ia[4]; 676 $plus_qanda[] = $ia[6]; // adds madatory identifyer for adding mandatory class to question wrapping div 677 $qanda[] = $plus_qanda; |
#4 |
+
–
/installpath/limesurvey-build130219/application/controllers/survey/index.php(651): SurveyRuntimeHelper->run("654567", array("surveyid" => "654567", "thissurvey" => array("sid" => "654567", "owner_id" => "1", "admin" => "Admin", "active" => "N", ...), "thisstep" => "0", "tokensexist" => 0, ...)) 646 //Send local variables to the appropriate survey type 647 unset($redata); 648 $redata = compact(array_keys(get_defined_vars())); 649 Yii::import('application.helpers.SurveyRuntimeHelper'); 650 $tmp = new SurveyRuntimeHelper(); 651 $tmp->run($surveyid,$redata); 652 653 if (isset($_POST['saveall']) || isset($flashmessage)) 654 { 655 echo "<script type='text/javascript'> $(document).ready( function() { alert('".$clang->gT("Your responses were successfully saved.","js")."');}) </script>"; 656 } |
#5 |
+
–
/installpath/limesurvey-build130219/application/controllers/survey/index.php(18): index->action() 13 14 class index extends CAction { 15 16 public function run() 17 { 18 $this->action(); 19 } 20 21 function action() 22 { 23 global $surveyid; |
#6 |
+
–
/installpath/limesurvey-build130219/framework/web/actions/CAction.php(75): index->run() 70 { 71 $method=new ReflectionMethod($this, 'run'); 72 if($method->getNumberOfParameters()>0) 73 return $this->runWithParamsInternal($this, $method, $params); 74 else 75 return $this->run(); 76 } 77 78 /** 79 * Executes a method of an object with the supplied named parameters. 80 * This method is internally used. |
#7 |
+
–
/installpath/limesurvey-build130219/framework/web/CController.php(309): CAction->runWithParams(array()) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#8 |
+
–
/installpath/limesurvey-build130219/framework/web/CController.php(287): CController->runAction(index) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#9 |
+
–
/installpath/limesurvey-build130219/framework/web/CController.php(266): CController->runActionWithFilters(index, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#10 |
+
–
/installpath/limesurvey-build130219/framework/web/CWebApplication.php(276): CController->run("index") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#11 |
+
–
/installpath/limesurvey-build130219/framework/web/CWebApplication.php(135): CWebApplication->runController("survey/index") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#12 |
+
–
/installpath/limesurvey-build130219/framework/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#13 |
+
–
/installpath/limesurvey-build130219/index.php(178): CApplication->run() 173 * 174 */ 175 require_once BASEPATH . 'yii' . EXT; 176 require_once APPPATH . 'core/LSYii_Application' . EXT; 177 178 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run(); 179 180 /* End of file index.php */ 181 /* Location: ./index.php */ |