diff options
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/layout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/layout.php b/app/Template/layout.php index 283a85f8..f04dad4b 100644 --- a/app/Template/layout.php +++ b/app/Template/layout.php @@ -35,7 +35,7 @@ <ul> <?php if (isset($board_selector) && ! empty($board_selector)): ?> <li> - <select id="board-selector" data-placeholder="<?= t('Display another project') ?>" data-board-url="<?= $this->u('board', 'show', array('project_id' => '%d')) ?>"> + <select id="board-selector" data-placeholder="<?= t('Display another project') ?>" data-board-url="<?= $this->u('board', 'show', array('project_id' => 'PROJECT_ID')) ?>"> <option value=""></option> <?php foreach($board_selector as $board_id => $board_name): ?> <option value="<?= $board_id ?>"><?= $this->e($board_name) ?></option> |