Places for People Consultation Platform

 

PHP notice

PHP notice

Undefined index: displayactions

C:\limesurvey\application\views\admin\usergroup\viewUserGroup_view.php(45)

33             <th><?php $clang->eT("Action");?></th>
34             <th><?php $clang->eT("Username");?></th>
35             <th><?php $clang->eT("Email");?></th>
36             </tr></thead>
37         <tbody>
38         <?php
39         foreach ($userloop as $currentuser)
40         {
41             ?>
42             <tr class='<?php echo $currentuser["rowclass"];?>'>
43                 <td align='center'>
44                 <?php
45                 if($currentuser["displayactions"])
46                 { ?>
47                     <form method='post' action='<?php echo $this->createUrl("admin/usergroups/user/ugid/{$usergroupid}/action/remove"); ?>'>
48                     <input type='image' src='<?php echo Yii::app()->getConfig('adminimageurl')?>/token_delete.png' alt='<?php $clang->eT("Delete this user from group");?>' onclick='return confirm("<?php $clang->eT("Are you sure you want to delete this entry?","js");?>")' />
49                     <input name='uid' type='hidden' value='<?php echo $currentuser["userid"]; ?>' />
50                     </form>
51                     <?php
52                 }
53                 else
54                 {
55                     ?>
56                     &nbsp;
57                 <?php

Stack Trace

#4
+
 C:\limesurvey\application\core\Survey_Common_Action.php(268): CController->render("/admin/usergroup/viewUserGroup_view", array("ugid" => 1, "imageurl" => "/styles/gringegreen/images/", "usergroupid" => "1", "groupfound" => true, ...))
263         {
264             if (empty($sViewKey) || !in_array($sViewKey, array('message', 'output')))
265             {
266                 if (is_numeric($sViewKey))
267                 {
268                     Yii::app()->getController()->render($sViewPath . $viewUrl, $aData);
269                 }
270                 elseif (is_array($viewUrl))
271                 {
272                     foreach ($viewUrl as $aSubData)
273                     {
#5
+
 C:\limesurvey\application\controllers\admin\usergroups.php(427): Survey_Common_Action->_renderWrappedTemplate("usergroup", array("viewUserGroup_view"), array("ugid" => 1, "imageurl" => "/styles/gringegreen/images/", "usergroupid" => "1", "groupfound" => true, ...))
422         $this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css");
423         $this->getController()->_js_admin_includes(Yii::app()->getConfig('adminscripts').'users.js');
424 
425         $aData['display']['menu_bars']['user_group'] = true;
426 
427         parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
428     }
429 }
#6
+
 C:\limesurvey\application\controllers\admin\usergroups.php(347): Usergroups->_renderWrappedTemplate("usergroup", array("viewUserGroup_view"), array("ugid" => 1, "imageurl" => "/styles/gringegreen/images/", "usergroupid" => "1", "groupfound" => true, ...))
342         {
343             return array($aViewUrls, $aData);
344         }
345         else
346         {
347             $this->_renderWrappedTemplate('usergroup', $aViewUrls, $aData);
348         }
349     }
350 
351     function user($ugid, $action = 'add')
352     {
2012-11-22 10:20:29 Microsoft-IIS/7.5 Yii Framework/1.1.10