Set no limit on read function, class read also changes to implement this

This commit is contained in:
Miles Lott 2001-03-18 06:48:46 +00:00
parent a51a7339be
commit 88154b1e19
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@
function export_start_file($buffer) {
$this->id=-1;
$this->contacts = CreateObject('phpgwapi.contacts');
$tmp = $this->contacts->read(0,'');
$tmp = $this->contacts->read();
for ($i=0;$i<count($tmp);$i++) {
$this->ids[$i] = $tmp[$i]['id'];
}

View File

@ -52,7 +52,7 @@
function export_start_file($buffer) {
$this->id=-1;
$this->contacts = CreateObject('phpgwapi.contacts');
$tmp = $this->contacts->read(0,'');
$tmp = $this->contacts->read();
for ($i=0;$i<count($tmp);$i++) {
$this->ids[$i] = $tmp[$i]['id'];
}