Changeset 3340:30cec05f4e63 for plugins/maintenance/inc/tasks
- Timestamp:
- 09/09/16 13:30:35 (9 years ago)
- Branch:
- default
- Location:
- plugins/maintenance/inc/tasks
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/inc/tasks/class.dc.maintenance.indexcomments.php
r2566 r3340 35 35 $this->code = $this->core->indexAllComments($this->code, $this->limit); 36 36 37 return $this->code ? $this->code: true;37 return $this->code ?: true; 38 38 } 39 39 -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexposts.php
r2044 r3340 35 35 $this->code = $this->core->indexAllPosts($this->code, $this->limit); 36 36 37 return $this->code ? $this->code: true;37 return $this->code ?: true; 38 38 } 39 39 -
plugins/maintenance/inc/tasks/class.dc.maintenance.synchpostsmeta.php
r2044 r3340 35 35 $this->code = $this->synchronizeAllPostsmeta($this->code, $this->limit); 36 36 37 return $this->code ? $this->code: true;37 return $this->code ?: true; 38 38 } 39 39
Note: See TracChangeset
for help on using the changeset viewer.