summaryrefslogtreecommitdiff
path: root/app/Helper
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-02-05 21:24:22 -0500
committerFrederic Guillot <fred@kanboard.net>2016-02-05 21:24:22 -0500
commitffb8494fec7bacedca8921185d69192bff848cd3 (patch)
tree2a8019ea1558888791431766a02bb65f44b806be /app/Helper
parent1bd96e8735b26a4efd2dc430ee9be002c825b04b (diff)
Category label is broken on the board if there's a url in the description
Diffstat (limited to 'app/Helper')
-rw-r--r--app/Helper/Url.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Helper/Url.php b/app/Helper/Url.php
index 720297cf..7de8a571 100644
--- a/app/Helper/Url.php
+++ b/app/Helper/Url.php
@@ -44,7 +44,7 @@ class Url extends Base
*/
public function link($label, $controller, $action, array $params = array(), $csrf = false, $class = '', $title = '', $new_tab = false, $anchor = '')
{
- return '<a href="'.$this->href($controller, $action, $params, $csrf, $anchor).'" class="'.$class.'" title="'.$title.'" '.($new_tab ? 'target="_blank"' : '').'>'.$label.'</a>';
+ return '<a href="'.$this->href($controller, $action, $params, $csrf, $anchor).'" class="'.$class.'" title=\''.$title.'\' '.($new_tab ? 'target="_blank"' : '').'>'.$label.'</a>';
}
/**