diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
commit | eeac2329baab1fdae7cbf6c707ed2ffd8beb4c1b (patch) | |
tree | 511c2fe47f8fbb1ea90e59e7a7a7f5e3530aa9ed /app/Integration/Jabber.php | |
parent | 65e9e5d1bed9f88ecfd43eb2c1e780a7c22c151f (diff) |
Helpers refactoring
Diffstat (limited to 'app/Integration/Jabber.php')
-rw-r--r-- | app/Integration/Jabber.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Integration/Jabber.php b/app/Integration/Jabber.php index d6917186..c956cc47 100644 --- a/app/Integration/Jabber.php +++ b/app/Integration/Jabber.php @@ -14,7 +14,7 @@ use Fabiang\Xmpp\Protocol\Presence; * @package integration * @author Frederic Guillot */ -class Jabber extends Base +class Jabber extends \Core\Base { /** * Return true if Jabber is enabled for this project or globally @@ -82,7 +82,7 @@ class Jabber extends Base if ($this->config->get('application_url')) { $payload .= ' '.$this->config->get('application_url'); - $payload .= $this->helper->url('task', 'show', array('task_id' => $task_id, 'project_id' => $project_id)); + $payload .= $this->helper->url->to('task', 'show', array('task_id' => $task_id, 'project_id' => $project_id)); } $this->sendMessage($project_id, $payload); |