From: cajus Date: Mon, 1 Feb 2010 14:50:30 +0000 (+0000) Subject: Corrected row iteration X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=35029d63d714571f4864b5566d339d92b629a11f;p=gosa.git Corrected row iteration git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15564 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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 ;-))