CException

Property "SurveyDynamic.token" is not defined.

/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/db/ar/CActiveRecord.php(145)

133      */
134     public function __get($name)
135     {
136         if(isset($this->_attributes[$name]))
137             return $this->_attributes[$name];
138         elseif(isset($this->getMetaData()->columns[$name]))
139             return null;
140         elseif(isset($this->_related[$name]))
141             return $this->_related[$name];
142         elseif(isset($this->getMetaData()->relations[$name]))
143             return $this->getRelated($name);
144         else
145             return parent::__get($name);
146     }
147 
148     /**
149      * PHP setter magic method.
150      * This method is overridden so that AR attributes can be accessed like properties.
151      * @param string $name property name
152      * @param mixed $value property value
153      */
154     public function __set($name,$value)
155     {
156         if($this->setAttribute($name,$value)===false)
157         {

Stack Trace

#1
+
 /home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/models/SurveyDynamic.php(616): CActiveRecord->__get("token")
611        // Basic filters
612        $criteria->compare('t.id',$this->id, true);
613        $criteria->compare('t.lastpage',$this->lastpage, true);
614        $criteria->compare('t.submitdate',$this->submitdate, true);
615        $criteria->compare('t.startlanguage',$this->startlanguage, true);
616        $criteria->compare('t.token',$this->token, true);
617 
618        // Completed filters
619        if($this->completed_filter == "Y")
620        {
621            $criteria->addCondition('t.submitdate IS NOT NULL');
#2
+
 /home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/views/admin/responses/listResponses_view.php(153): SurveyDynamic->search()
148                                 );
149                         }
150                     }
151 
152                     $this->widget('bootstrap.widgets.TbGridView', array(
153                         'dataProvider'  => $model->search(),
154                         'filter'        => $model,
155                         'columns'       => $aColumns,
156                         'itemsCssClass' =>'table-striped',
157                         'id'            => 'responses-grid',
158                         'ajaxUpdate'    => false,
#6
+
 /home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/core/Survey_Common_Action.php(314): CController->renderPartial("/admin/responses/listResponses_view", array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...))
309         {
310             if (empty($sViewKey) || !in_array($sViewKey, array('message', 'output')))
311             {
312                 if (is_numeric($sViewKey))
313                 {
314                     Yii::app()->getController()->renderPartial($sViewPath . $viewUrl, $aData);
315                 }
316                 elseif (is_array($viewUrl))
317                 {
318                     foreach ($viewUrl as $aSubData)
319                     {
2016-07-14 16:23:28 Apache/2.2.22 (Debian) Yii Framework/1.1.17