Added code to allow unlimited memory usage when exporting ADIF

pull/106/merge
Peter Goodhall 2011-09-23 18:15:47 +01:00
rodzic 08b07587c4
commit cd4217b0f2
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -14,6 +14,9 @@ class adif extends CI_Controller {
// Export all QSO Data in ASC Order of Date.
public function exportall()
{
// Set memory limit to unlimited to allow heavy usage
ini_set('memory_limit', '-1');
$this->load->model('adif_data');
$data['qsos'] = $this->adif_data->export_all();
@ -22,6 +25,10 @@ class adif extends CI_Controller {
}
public function export_custom() {
// Set memory limit to unlimited to allow heavy usage
ini_set('memory_limit', '-1');
$this->load->model('adif_data');
$data['qsos'] = $this->adif_data->export_custom($this->input->post('from'), $this->input->post('to'));