forked from extern/egroupware
Set no limit on read function, class read also changes to implement this
This commit is contained in:
parent
a51a7339be
commit
88154b1e19
@ -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'];
|
||||
}
|
||||
|
@ -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'];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user