infinite loop removed

This commit is contained in:
duergner 2004-05-27 18:06:19 +00:00
parent 1b017e09ad
commit 5076243977
1 changed files with 1 additions and 0 deletions

View File

@ -984,6 +984,7 @@ class accountContainer {
$return = array(); $return = array();
while(($current = current($this->module)) != null) { while(($current = current($this->module)) != null) {
$return = array_merge($return,$current->get_pdfEntries($account_type)); $return = array_merge($return,$current->get_pdfEntries($account_type));
next($this->module);
} }
return $return; return $return;
} }