PHP notice

Array to string conversion

C:\limesurvey\application\controllers\admin\printablesurvey.php(657)

645                     ,'QUESTIONHELP' => ''            // content of the question help field.
646                     ,'ANSWER' => ''                // contains formatted HTML answer
647                     );
648 
649                     if($question['QUESTION_TYPE_HELP'] != "") {
650                         $question['QUESTION_TYPE_HELP'] .= "<br />\n";
651                     }
652 
653                     if ($deqrow['mandatory'] == 'Y')
654                     {
655                         $question['QUESTION_MANDATORY'] = $clang->gT('*');
656                         $question['QUESTION_CLASS'] .= ' mandatory';
657                         $pdfoutput .= $clang->gT("*");
658                     }
659 
660                     $pdfoutput ='';
661 
662                     //DIFFERENT TYPES OF DATA FIELD HERE
663 
664 
665                     if(isset($_POST['printableexport'])){$pdf->intopdf($deqrow['title']." ".$deqrow['question']);}
666 
667                     if ($deqrow['help'])
668                     {
669                         $hh = $deqrow['help'];

Stack Trace

#2
+
 C:\limesurvey\application\core\Survey_Common_Action.php(82): CAction->runWithParamsInternal(printablesurvey, ReflectionMethod, array("surveyid" => "378628", "sa" => "index", "iSurveyId" => "378628", "iSurveyID" => "378628"))
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
#6
+
 C:\limesurvey\application\controllers\AdminController.php(159): CController->run("printablesurvey")
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     *
#10
+
 C:\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 */
2012-11-16 12:18:44 Microsoft-IIS/7.5 Yii Framework/1.1.10