PHP notice

Undefined index: password

C:\limesurvey_test\application\helpers\common_helper.php(1374)

1362     $userlist[0] = "Reserved for logged in user";
1363     //while ($srow = $uresult->readAll())
1364     foreach ($uresult as $srow)
1365     {
1366         if ($outputformat != 'onlyuidarray')
1367         {
1368             if ($srow['uid'] != Yii::app()->session['loginID'])
1369             {
1370                 $userlist[] = array("user"=>$srow['users_name'], "uid"=>$srow['uid'], "email"=>$srow['email'], "password"=>$srow['password'], "full_name"=>$srow['full_name'], "parent_id"=>$srow['parent_id'], "create_survey"=>$srow['create_survey'], "participant_panel"=>$srow['participant_panel'], "configurator"=>$srow['configurator'], "create_user"=>$srow['create_user'], "delete_user"=>$srow['delete_user'], "superadmin"=>$srow['superadmin'], "manage_template"=>$srow['manage_template'], "manage_label"=>$srow['manage_label']);           //added by Dennis modified by Moses
1371             }
1372             else
1373             {
1374                 $userlist[0] = array("user"=>$srow['users_name'], "uid"=>$srow['uid'], "email"=>$srow['email'], "password"=>$srow['password'], "full_name"=>$srow['full_name'], "parent_id"=>$srow['parent_id'], "create_survey"=>$srow['create_survey'],"participant_panel"=>$srow['participant_panel'], "configurator"=>$srow['configurator'], "create_user"=>$srow['create_user'], "delete_user"=>$srow['delete_user'], "superadmin"=>$srow['superadmin'], "manage_template"=>$srow['manage_template'], "manage_label"=>$srow['manage_label']);
1375             }
1376         }
1377         else
1378         {
1379             if ($srow['uid'] != Yii::app()->session['loginID'])
1380             {
1381                 $userlist[] = $srow['uid'];
1382             }
1383             else
1384             {
1385                 $userlist[0] = $srow['uid'];
1386             }

Stack Trace

#0
+
 C:\limesurvey_test\application\controllers\admin\useraction.php(43): getUserList()
38     public function index()
39     {
40         $this->getController()->_js_admin_includes(Yii::app()->getConfig('generalscripts') . 'jquery/jquery.tablesorter.min.js');
41         $this->getController()->_js_admin_includes(Yii::app()->getConfig('adminscripts').'users.js');
42 
43         $userlist = getUserList();
44         $usrhimself = $userlist[0];
45         unset($userlist[0]);
46 
47         if (Yii::app()->session['USER_RIGHT_SUPERADMIN'] == 1) {
48             $noofsurveys = Survey::model()->countByAttributes(array("owner_id" => $usrhimself['uid']));
#3
+
 C:\limesurvey_test\application\core\Survey_Common_Action.php(82): CAction->runWithParamsInternal(UserAction, ReflectionMethod, array("sa" => "index"))
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:\limesurvey_test\application\controllers\AdminController.php(159): CController->run("user")
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     *
2012-11-26 10:41:28 Microsoft-IIS/7.5 Yii Framework/1.1.10