summaryrefslogtreecommitdiff
path: root/app/Integration/Jabber.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-12 15:46:03 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-12 15:46:03 -0400
commit59df72d4763bbe640543f3026f33c15363e14116 (patch)
tree9b24123f82d80ce0e48fcdfc6d6fc2fa515f80b7 /app/Integration/Jabber.php
parent12f2ffb66381f441ac34c1497e78c02f97695e7d (diff)
Fix some issue dur to url rewriting
Diffstat (limited to 'app/Integration/Jabber.php')
-rw-r--r--app/Integration/Jabber.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Integration/Jabber.php b/app/Integration/Jabber.php
index a1191662..3e403aab 100644
--- a/app/Integration/Jabber.php
+++ b/app/Integration/Jabber.php
@@ -81,8 +81,7 @@ class Jabber extends \Core\Base
$payload = '['.$project['name'].'] '.str_replace('&quot;', '"', $this->projectActivity->getTitle($event)).(isset($event['task']['title']) ? ' ('.$event['task']['title'].')' : '');
if ($this->config->get('application_url')) {
- $payload .= ' '.$this->config->get('application_url');
- $payload .= $this->helper->url->to('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), false, '', true);
}
$this->sendMessage($project_id, $payload);