Code

Updated trustModes
[gosa.git] / gosa-core / include / class_sortableListing.inc
index 3cd08a5baf9750c65c8b10dd62d5a219b18ad662..64e122671193b01ebd1cba60d1bac349b157ab23 100644 (file)
@@ -71,6 +71,11 @@ class sortableListing {
     }
   }
 
+   
+  public function setDefaultSortColumn($id)
+  {
+    $this->sortColumn = $id;
+  }
 
   public function setListData($data, $displayData= null)
   {
@@ -319,16 +324,14 @@ class sortableListing {
 
   public function update()
   {
-    // Do not do anything if this is not our PID, or there's even no PID available...
-    if(isset($_REQUEST['PID']) && $_REQUEST['PID'] != $this->id) {
-      return;
-    }
 
     // Filter GET with "act" attributes
     if (!$this->reorderable){
-      if(isset($_GET['act'])) {
+      if(isset($_GET['act']) && isset($_GET['PID']) && $this->id == $_GET['PID']) {
+    
         $key= validate($_GET['act']);
         if (preg_match('/^SORT_([0-9]+)$/', $key, $match)) {
+
           // Switch to new column or invert search order?
           $column= $match[1];
           if ($this->sortColumn != $column) {
@@ -339,7 +342,7 @@ class sortableListing {
 
         }
       }
-
+  
       // Update mapping according to sort parameters
       $this->sortData();
     }