Changeset 1959:2c77682177b4 for plugins/maintenance/inc
- Timestamp:
- 09/19/13 23:18:37 (12 years ago)
- Branch:
- default
- Location:
- plugins/maintenance/inc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/inc/class.dc.maintenance.task.php
r1955 r1959 25 25 protected $code; 26 26 protected $ts = 604800; // one week 27 protected $ajax = false; 27 28 28 29 protected $id; … … 139 140 140 141 /** 142 * Use ajax 143 * 144 * Is task use maintenance ajax script 145 * for steps process. 146 * 147 * @return <b>boolean</b> Use ajax 148 */ 149 public function ajax() 150 { 151 return (boolean) $this->ajax; 152 } 153 154 /** 141 155 * Get task message. 142 156 * -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexcomments.php
r1925 r1959 14 14 class dcMaintenanceIndexcomments extends dcMaintenanceTask 15 15 { 16 protected $ajax = true; 16 17 protected $group = 'index'; 17 18 protected $limit = 500; -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexposts.php
r1925 r1959 14 14 class dcMaintenanceIndexposts extends dcMaintenanceTask 15 15 { 16 protected $ajax = true; 16 17 protected $group = 'index'; 17 18 protected $limit = 500;
Note: See TracChangeset
for help on using the changeset viewer.