silence some error log statements

This commit is contained in:
Klaus Leithoff 2011-09-13 10:16:29 +00:00
parent 2ed73047df
commit a2730516fe
2 changed files with 0 additions and 4 deletions

View File

@ -40,10 +40,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
// Addressbook defines its own export imits
$limit_exception = bo_merge::is_export_limit_excepted();
error_log(__METHOD__.__LINE__.'#'.$GLOBALS['egw_info']['server']['contact_export_limit'].'#');
error_log(__METHOD__.__LINE__.'#'.bo_merge::getExportLimit().'#');
$export_limit = $export_object->export_limit = bo_merge::getExportLimit($GLOBALS['egw_info']['server']['contact_export_limit']);
error_log(__METHOD__.__LINE__.'#'.$export_limit.'#');
if($export_limit == 'no' && !$limit_exception) {
return;
}

View File

@ -105,7 +105,6 @@ class importexport_export_csv implements importexport_iface_export_record
$this->export_limit = bo_merge::getExportLimit();
if($this->export_limit == 'no') throw new egw_exception_no_permission_admin('Export disabled');
}
error_log(__METHOD__.__LINE__.'#'.$this->export_limit.'#');
}
/**