diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-20 15:53:28 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-20 15:53:28 -0400 |
commit | 2021dccc5a444f60c5ba1673d94b39999912cd26 (patch) | |
tree | 5d805496f001456baa83c0776a32bdb24511511b /app/Template/user/sidebar.php | |
parent | a0124b45f9dab8a0f7d4879d4ea147b414b25bf2 (diff) |
Move subtask forecast to a plugin
Plugin repo: https://github.com/kanboard/plugin-subtask-forecast
Diffstat (limited to 'app/Template/user/sidebar.php')
-rw-r--r-- | app/Template/user/sidebar.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/user/sidebar.php b/app/Template/user/sidebar.php index 80fe8684..6a4e9c47 100644 --- a/app/Template/user/sidebar.php +++ b/app/Template/user/sidebar.php @@ -21,7 +21,7 @@ </li> <?php endif ?> - <?= $this->hook->render('user:sidebar:information') ?> + <?= $this->hook->render('template:user:sidebar:information') ?> </ul> <h2><?= t('Actions') ?></h2> @@ -67,7 +67,7 @@ </li> <?php endif ?> - <?= $this->hook->render('user:sidebar:actions', array('user' => $user)) ?> + <?= $this->hook->render('template:user:sidebar:actions', array('user' => $user)) ?> <?php if ($this->user->isAdmin() && ! $this->user->isCurrentUser($user['id'])): ?> <li <?= $this->app->getRouterController() === 'user' && $this->app->getRouterAction() === 'remove' ? 'class="active"' : '' ?>> |