C:\xampp\htdocs\limesurvey\framework\db\schema\CDbCommandBuilder.php(686)
674 675 for($i=0;$i<$n;++$i) 676 { 677 if(isset($values[$i][$name])) 678 { 679 $value=$table->columns[$name]->typecast($values[$i][$name]); 680 if(is_string($value)) 681 $values[$i][$name]=$db->quoteValue($value); 682 else 683 $values[$i][$name]=$value; 684 } 685 else 686 throw new CDbException(Yii::t('yii','The value for the column "{column}" is not supplied when querying the table "{table}".', 687 array('{table}'=>$table->name,'{column}'=>$name))); 688 } 689 } 690 if(count($values)===1) 691 { 692 $entries=array(); 693 foreach($values[0] as $name=>$value) 694 $entries[]=$prefix.$table->columns[$name]->rawName.($value===null?' IS NULL':'='.$value); 695 return implode(' AND ',$entries); 696 } 697 698 return $this->createCompositeInCondition($table,$values,$prefix);
#0 |
+
–
C:\xampp\htdocs\limesurvey\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(CMssqlTableSchema, array("gid", "language"), array("41"), "[t].") 493 $prefix=$this->_schema->quoteTableName($criteria->alias).'.'; 494 if(!is_array($pk)) // single key 495 $pk=array($pk); 496 if(is_array($table->primaryKey) && !isset($pk[0]) && $pk!==array()) // single composite key 497 $pk=array($pk); 498 $condition=$this->createInCondition($table,$table->primaryKey,$pk,$prefix); 499 if($criteria->condition!='') 500 $criteria->condition=$condition.' AND ('.$criteria->condition.')'; 501 else 502 $criteria->condition=$condition; 503 |
#1 |
+
–
C:\xampp\htdocs\limesurvey\framework\db\ar\CActiveRecord.php(1437): CDbCommandBuilder->createPkCriteria(CMssqlTableSchema, "41", "", array(), ...) 1432 */ 1433 public function findAllByPk($pk,$condition='',$params=array()) 1434 { 1435 Yii::trace(get_class($this).'.findAllByPk()','system.db.ar.CActiveRecord'); 1436 $prefix=$this->getTableAlias(true).'.'; 1437 $criteria=$this->getCommandBuilder()->createPkCriteria($this->getTableSchema(),$pk,$condition,$params,$prefix); 1438 return $this->query($criteria,true); 1439 } 1440 1441 /** 1442 * Finds a single active record that has the specified attribute values. |
#2 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\admin\checkintegrity.php(529): CActiveRecord->findAllByPk("41") 524 $criteria->compare('scope', 'G'); 525 $assessments = Assessment::model()->findAll($criteria); 526 if (Assessment::model()->hasErrors()) safeDie(Assessment::model()->getError()); 527 foreach ($assessments as $assessment) 528 { 529 $iAssessmentCount = count(Groups::model()->findAllByPk($assessment['gid'])); 530 if (Groups::model()->hasErrors()) safeDie(Groups::model()->getError()); 531 if (!$iAssessmentCount) { 532 $aDelete['assessments'][] = array('id' => $assessment['id'], 'assessment' => $assessment['name'], 'reason' => $clang->gT('No matching group')); 533 } 534 } |
#3 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\admin\checkintegrity.php(39): CheckIntegrity->_checkintegrity() 34 Yii::app()->loadHelper('database'); 35 } 36 37 public function index() 38 { 39 $aData = $this->_checkintegrity(); 40 $this->_renderWrappedTemplate('checkintegrity', 'check_view', $aData); 41 } 42 43 public function fixredundancy() 44 { |
#4 |
unknown(0): CheckIntegrity->index()
|
#5 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(CheckIntegrity, array()) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } |
#6 |
+
–
C:\xampp\htdocs\limesurvey\application\core\Survey_Common_Action.php(82): CAction->runWithParamsInternal(CheckIntegrity, ReflectionMethod, array()) 77 $oMethod = new ReflectionMethod($this, $sDefault); 78 } 79 80 // We're all good to go, let's execute it 81 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 82 return parent::runWithParamsInternal($this, $oMethod, $params); 83 } 84 85 /** 86 * Some functions have different parameters, which are just an alias of the 87 * usual parameters we're getting in the url. This function just populates |
#7 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(309): Survey_Common_Action->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 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(287): CController->runAction(CheckIntegrity) 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 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(266): CController->runActionWithFilters(CheckIntegrity, 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 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\AdminController.php(159): CController->run("checkintegrity") 154 Yii::app()->session['redirectopage'] = Yii::app()->request->requestUri; 155 156 $this->redirect($this->createUrl('/admin/authentication/login')); 157 } 158 159 return parent::run($action); 160 } 161 162 /** 163 * Routes all the actions to their respective places 164 * |
#11 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(276): AdminController->run("checkintegrity") 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))); |
#12 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(135): CWebApplication->runController("admin/checkintegrity") 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. |
#13 |
+
–
C:\xampp\htdocs\limesurvey\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 /** |
#14 |
+
–
C:\xampp\htdocs\limesurvey\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 */ |