diff --git a/ChangeLog b/ChangeLog
index 0c090e642..ef58e0ac4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -40,6 +40,7 @@ Improvements:
Bug fixes:
+* Category label is broken on the board if there's a url in the description
* Fix pagination on task time tracking page
Version 1.0.24
diff --git a/app/Helper/Url.php b/app/Helper/Url.php
index 720297cff..7de8a5711 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 ''.$label.'';
+ return ''.$label.'';
}
/**
diff --git a/tests/units/Helper/UrlHelperTest.php b/tests/units/Helper/UrlHelperTest.php
index 9f26a8022..15e012378 100644
--- a/tests/units/Helper/UrlHelperTest.php
+++ b/tests/units/Helper/UrlHelperTest.php
@@ -12,7 +12,7 @@ class UrlHelperTest extends Base
{
$h = new Url($this->container);
$this->assertEquals(
- 'label',
+ 'label',
$h->link('label', 'a', 'b', array('d' => 'e', 'plugin' => 'something'), false, 'f', 'g', true)
);
}
@@ -24,7 +24,7 @@ class UrlHelperTest extends Base
$h = new Url($this->container);
$this->assertEquals(
- 'label',
+ 'label',
$h->link('label', 'a', 'b', array('d' => 'e', 'plugin' => 'something'), false, 'f', 'g', true)
);
}
@@ -33,7 +33,7 @@ class UrlHelperTest extends Base
{
$h = new Url($this->container);
$this->assertEquals(
- 'label',
+ 'label',
$h->link('label', 'a', 'b', array('d' => 'e'), false, 'f', 'g', true)
);
}