From 35029d63d714571f4864b5566d339d92b629a11f Mon Sep 17 00:00:00 2001 From: cajus Date: Mon, 1 Feb 2010 14:50:30 +0000 Subject: [PATCH] Corrected row iteration git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15564 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_listing.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gosa-core/include/class_listing.inc b/gosa-core/include/class_listing.inc index 2accbf8f2..7c3ea972f 100644 --- a/gosa-core/include/class_listing.inc +++ b/gosa-core/include/class_listing.inc @@ -380,10 +380,10 @@ class listing { // Complete list by sorting entries for _sort$index and appending them to the output $entryIterator= new listingSortIterator($this->entries, $this->sortDirection[$this->sortColumn], "_sort".$this->sortColumn, $this->sortType); foreach ($entryIterator as $row => $entry){ - $alt++; $result.="\n"; $result.= $entry['_rendered']; $result.="\n"; + $alt++; } // Need to fill the list if it's not full (nobody knows why this is 22 ;-)) -- 2.30.2