/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/application/controllers/admin/database.php(1243)
1231 # Yii::app()->setFlashMessage(gT("Question in language %s could not be created."),'error'); 1232 # } 1233 } 1234 } 1235 } 1236 1237 1238 if (!$this->iQuestionID) 1239 { 1240 Yii::app()->setFlashMessage(gT("Question could not be created."),'error'); 1241 1242 } else { 1243 if ($sAction == 'copyquestion') { 1244 if (returnGlobal('copysubquestions') == 1) 1245 { 1246 $aSQIDMappings = array(); 1247 $r1 = Question::model()->getSubQuestions(returnGlobal('oldqid')); 1248 $aSubQuestions = $r1->readAll(); 1249 1250 foreach ($aSubQuestions as $qr1) 1251 { 1252 $qr1['parent_qid'] = $this->iQuestionID; 1253 $oldqid= ''; 1254 if (isset($aSQIDMappings[$qr1['qid']])) 1255 {
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/application/controllers/admin/database.php(68): database->actionInsertCopyQuestion("91424") 63 } 64 if ($sAction == "updatesubquestions" && Permission::model()->hasSurveyPermission($iSurveyID, 'surveycontent','update')){ 65 $this->actionSubQuestions($iSurveyID); 66 } 67 if (in_array($sAction, array('insertquestion', 'copyquestion')) && Permission::model()->hasSurveyPermission($iSurveyID, 'surveycontent','create')){ 68 $this->actionInsertCopyQuestion($iSurveyID); 69 } 70 if ($sAction == "updatequestion" && Permission::model()->hasSurveyPermission($iSurveyID, 'surveycontent','update')){ 71 $this->actionUpdateQuestion($iSurveyID); 72 } 73 if (($sAction == "updatesurveylocalesettings") && (Permission::model()->hasSurveyPermission($iSurveyID,'surveylocale','update') || Permission::model()->hasSurveyPermission($iSurveyID,'surveysettings','update'))){ |
#1 |
unknown(0): database->index("index")
|
#2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(database, array("index")) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/application/core/Survey_Common_Action.php(101): CAction->runWithParamsInternal(database, ReflectionMethod, array("sa" => "index")) 096 $oMethod = new ReflectionMethod($this, $sDefault); 097 } 098 099 // We're all good to go, let's execute it 100 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 101 return parent::runWithParamsInternal($this, $oMethod, $params); 102 } 103 104 /** 105 * Some functions have different parameters, which are just an alias of the 106 * usual parameters we're getting in the url. This function just populates |
#4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("sa" => "index")) 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; |
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/CController.php(286): CController->runAction(database) 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(); |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/CController.php(265): CController->runActionWithFilters(database, 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); |
#7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/application/controllers/AdminController.php(177): CController->run("database") 172 $this->redirect(array('/admin/authentication/sa/login')); 173 } 174 175 } 176 177 return parent::run($action); 178 } 179 180 /** 181 * Routes all the actions to their respective places 182 * |
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/CWebApplication.php(282): AdminController->run("database") 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))); |
#9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/database/sa/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. |
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/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 /** |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/testing/answershtml/index.php(214): CApplication->run() 209 die (sprintf('%s should be writable by the webserver (766 or 776).', $sDefaultRuntimePath)); 210 } 211 } 212 213 Yii::$enableIncludePath = false; 214 Yii::createApplication('LSYii_Application', $config)->run(); 215 216 /* End of file index.php */ 217 /* Location: ./index.php */ |