Changeset 3340:30cec05f4e63 for plugins/maintenance
- Timestamp:
- 09/09/16 13:30:35 (9 years ago)
- Branch:
- default
- Location:
- plugins/maintenance
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/_admin.php
r3324 r3340 277 277 } 278 278 if (!empty($res_task)) { 279 $desc = $group_obj->description ? $group_obj->description: $group_obj->summary;279 $desc = $group_obj->description ?: $group_obj->summary; 280 280 281 281 $res_group .= … … 286 286 } 287 287 if (!empty($res_group)) { 288 $desc = $tab_obj->description ? $tab_obj->description: $tab_obj->summary;288 $desc = $tab_obj->description ?: $tab_obj->summary; 289 289 290 290 $res_tab .= -
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.