Skip to content

Commit 19b303f

Browse files
author
Mark Scherer
committed
Remove recursive property calls.
1 parent d301cfe commit 19b303f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Controller/CronTasksController.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ public function beforeFilter() {
2020
* @return void
2121
*/
2222
public function index() {
23-
$this->CronTask->recursive = 0;
2423
$cronTasks = $this->paginate();
2524
$this->set(compact('cronTasks'));
2625
}
@@ -111,7 +110,6 @@ public function delete($id = null) {
111110
* @return void
112111
*/
113112
public function admin_index() {
114-
$this->CronTask->recursive = 0;
115113
$cronTasks = $this->paginate();
116114
$this->set(compact('cronTasks'));
117115
}

0 commit comments

Comments
 (0)