infinite loop removed

This commit is contained in:
duergner 2004-05-27 18:06:19 +00:00
父節點 1b017e09ad
當前提交 5076243977
共有 1 個文件被更改,包括 1 次插入0 次删除

查看文件

@ -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;
} }