PHP notice

Undefined index: info

/var/www/lime3/application/helpers/expressions/em_manager_helper.php(10191)

10179                         if(substr($sgq,-5)!='other')
10180                         {
10181                             if($value=="-oth-")
10182                             {
10183                                 if($qinfo['info']['other']!='Y')
10184                                 {
10185                                     $LEM->addValidityString($sgq,$value,gT("%s is an invalid value for this question"),$set);
10186                                     return false;
10187                                 }
10188                             }
10189                             else
10190                 {
10191                                 if(!Answer::model()->getAnswerFromCode($qinfo['info']['qid'],$value,$language))
10192                                 {
10193                                     $LEM->addValidityString($sgq,$value,gT("%s is an invalid value for this question"),$set);
10194                                     return false;
10195                                 }
10196                             }
10197                         }
10198                         break;
10199                     case 'O': // List with comment
10200                         if(substr($sgq,-7)!='comment')
10201                         {
10202                             if(!Answer::model()->getAnswerFromCode($qinfo['info']['qid'],$value,$language))
10203                             {

Stack Trace

#1
+
 /var/www/lime3/application/helpers/expressions/em_manager_helper.php(6054): LimeExpressionManager->_ValidateQuestion(11, false)
6049             /////////////////////////////////////////////////////////
6050             // CHECK EACH QUESTION, AND SET GROUP-LEVEL PROPERTIES //
6051             /////////////////////////////////////////////////////////
6052             for ($i=$groupSeqInfo['qstart'];$i<=$groupSeqInfo['qend']; ++$i)
6053             {
6054                 $qStatus = $LEM->_ValidateQuestion($i,$force);
6055 
6056                 $updatedValues = array_merge($updatedValues,$qStatus['updatedValues']);
6057 
6058                 if ($gRelInfo['result']==true && $qStatus['relevant']==true) {
6059                     $grel = $gRelInfo['result'];    // true;   // at least one question relevant
#2
+
 /var/www/lime3/application/helpers/expressions/em_manager_helper.php(5289): LimeExpressionManager->_ValidateGroup(5)
5284                                 'invalidSQs'=>(isset($result['invalidSQs']) ? $result['invalidSQs'] : ''),
5285                             );
5286                             return $LEM->lastMoveResult;
5287                         }
5288 
5289                         $result = $LEM->_ValidateGroup($LEM->currentGroupSeq);
5290                         if (is_null($result)) {
5291                             continue;   // this is an invalid group - skip it
5292                         }
5293                         $message .= $result['message'];
5294                         $updatedValues = array_merge($updatedValues,$result['updatedValues']);
2019-05-02 12:00:14 nginx/1.14.0 Yii Framework/1.1.21