summaryrefslogtreecommitdiff
path: root/app/Template/layout.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-01-25 13:30:31 -0500
committerFrederic Guillot <fred@kanboard.net>2015-01-25 13:30:31 -0500
commite6cf1bf23648f02615eeeddd34b0f4f2578f1f0a (patch)
tree293045e5f6fddb5138748322460419c10d77b78d /app/Template/layout.php
parent54d2d46b6512a0369fd2f0521e8565e42ea358ea (diff)
Fix bug board selector redirection
Diffstat (limited to 'app/Template/layout.php')
-rw-r--r--app/Template/layout.php2
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>