summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/admin_maintenance.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-07-07 12:49:21 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-07-07 12:49:21 -0700
commit5d9e334fe6d7c7c1cf6d39a12684e215e797b4b3 (patch)
tree98d9ed0ef75c603dd5a477991ad9f5315b7c8d8d /modules/gallery/controllers/admin_maintenance.php
parente5cd7052e810d9bbd4a4a53b5519b91b9f9f2245 (diff)
Added a wee bit of phpDoc.
Changed the name of the method get_task_log to get_log Changed the default name of the file when the log is downloaded to gallery3_task_log.txt
Diffstat (limited to 'modules/gallery/controllers/admin_maintenance.php')
-rw-r--r--modules/gallery/controllers/admin_maintenance.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/controllers/admin_maintenance.php b/modules/gallery/controllers/admin_maintenance.php
index 37cc5222..543961a1 100644
--- a/modules/gallery/controllers/admin_maintenance.php
+++ b/modules/gallery/controllers/admin_maintenance.php
@@ -119,8 +119,8 @@ class Admin_Maintenance_Controller extends Admin_Controller {
}
header("Content-Type: application/text");
- header("Content-Disposition: filename=g2_import.txt");
- print $task->get_task_log();
+ header("Content-Disposition: filename=gallery3_task_log.txt");
+ print $task->get_log();
}
/**