Code

Updated smarty image function
[gosa.git] / gosa-core / include / class_listing.inc
index a1f6a3c80ef7e763d757f44651823348ec0b4042..2bf9e3b5935c9a597b6cb69e705c3f4126132004 100644 (file)
@@ -839,6 +839,11 @@ class listing {
     // Go thru all actions
     $result= "";
     $actions= $this->xmlData['actiontriggers']['action'];
+
+    // Ensure we've a valid actions array, if there is only one action in the actiontriggers col
+    //  then we've to create a valid array here.
+    if(isset($actions['name'])) $actions = array($actions);
+
     foreach($actions as $action) {
       // Skip the entry completely if there's no permission to execute it
       if (!$this->hasActionPermission($action, $dn, $classes)) {