summaryrefslogtreecommitdiff
path: root/app/Integration
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-19 18:54:00 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-19 18:54:00 -0400
commit33a3196001a29e82f77faf8799c58c6ec3cc7579 (patch)
treef4737de8e41bf6bdbb2c16244b5ab9ad8da3722a /app/Integration
parent56c08e55f73113cc13cedeef67a3312b314b8f40 (diff)
Fix minor issues
Diffstat (limited to 'app/Integration')
-rw-r--r--app/Integration/Jabber.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Integration/Jabber.php b/app/Integration/Jabber.php
index 3e403aab..eaf1c5a8 100644
--- a/app/Integration/Jabber.php
+++ b/app/Integration/Jabber.php
@@ -81,7 +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->helper->url->to('task', 'show', array('task_id' => $task_id, 'project_id' => $project_id), false, '', true);
+ $payload .= ' '.$this->helper->url->to('task', 'show', array('task_id' => $task_id, 'project_id' => $project_id), '', true);
}
$this->sendMessage($project_id, $payload);