diff options
Diffstat (limited to 'modules/gallery')
| -rw-r--r-- | modules/gallery/controllers/admin_maintenance.php | 2 | ||||
| -rw-r--r-- | modules/gallery/views/admin_maintenance.html.php | 8 | 
2 files changed, 0 insertions, 10 deletions
| diff --git a/modules/gallery/controllers/admin_maintenance.php b/modules/gallery/controllers/admin_maintenance.php index 487e77a6..d90fe0ea 100644 --- a/modules/gallery/controllers/admin_maintenance.php +++ b/modules/gallery/controllers/admin_maintenance.php @@ -44,8 +44,6 @@ class Admin_Maintenance_Controller extends Admin_Controller {      $view->content->task_definitions = task::get_definitions();      $view->content->running_tasks = ORM::factory("task")        ->where("done", "=", 0)->order_by("updated", "DESC")->find_all(); -    $view->content->schedule_definitions = -      module::is_active("scheduler") ? scheduler::get_definitions() : "";      $view->content->finished_tasks = ORM::factory("task")        ->where("done", "=", 1)->order_by("updated", "DESC")->find_all();      print $view; diff --git a/modules/gallery/views/admin_maintenance.html.php b/modules/gallery/views/admin_maintenance.html.php index 15d04caa..ac597715 100644 --- a/modules/gallery/views/admin_maintenance.html.php +++ b/modules/gallery/views/admin_maintenance.html.php @@ -33,20 +33,12 @@                class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all">                <?= t("run") ?>              </a> -            <? if (module::is_active("scheduler")): ?> -            <a href="<?= url::site("form/add/admin/schedule/$task->callback?csrf=$csrf") ?>" -              class="g-dialog-link g-button ui-icon-left ui-state-default ui-corner-all"> -              <?= t("schedule") ?> -            </a> -            <? endif ?>            </td>          </tr>          <? endforeach ?>        </table>      </div> -    <?= $schedule_definitions ?> -      <? if ($running_tasks->count()): ?>      <div id="g-running-tasks">        <h2> <?= t("Running tasks") ?> </h2> | 
