diff --git a/module/bug/model.php b/module/bug/model.php
index 9290177b28..99f2b8b319 100644
--- a/module/bug/model.php
+++ b/module/bug/model.php
@@ -2636,7 +2636,7 @@ class bugModel extends model
if($id)
{
$name = $this->dao->select('title')->from(TABLE_BUG)->where('id')->eq($id)->fetch('title');
- if($name) $action->appendLink = html::a(zget($this->config->mail, 'domain', common::getSysURL()) . helper::createLink($action->objectType, 'view', "id=$id"), "#$id " . $name);
+ if($name) $action->appendLink = html::a(zget($this->config->mail, 'domain', common::getSysURL()) . helper::createLink($action->objectType, 'view', "id=$id", 'html'), "#$id " . $name);
}
}
diff --git a/module/bug/view/sendmail.html.php b/module/bug/view/sendmail.html.php
index f949c6399e..3c5cddadd0 100644
--- a/module/bug/view/sendmail.html.php
+++ b/module/bug/view/sendmail.html.php
@@ -18,7 +18,7 @@
|
color) ? '#333' : $bug->color;?>
- config->mail, 'domain', common::getSysURL()) . helper::createLink('bug', 'view', "bugID=$bug->id"), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
+ config->mail, 'domain', common::getSysURL()) . helper::createLink('bug', 'view', "bugID=$bug->id", 'html'), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
|
diff --git a/module/story/model.php b/module/story/model.php
index bbf8280118..d299d0baa8 100644
--- a/module/story/model.php
+++ b/module/story/model.php
@@ -2506,7 +2506,7 @@ class storyModel extends model
if($id)
{
$name = $this->dao->select('title')->from(TABLE_STORY)->where('id')->eq($id)->fetch('title');
- if($name) $action->appendLink = html::a(zget($this->config->mail, 'domain', common::getSysURL()) . helper::createLink($action->objectType, 'view', "id=$id"), "#$id " . $name);
+ if($name) $action->appendLink = html::a(zget($this->config->mail, 'domain', common::getSysURL()) . helper::createLink($action->objectType, 'view', "id=$id", 'html'), "#$id " . $name);
}
}
diff --git a/module/story/view/sendmail.html.php b/module/story/view/sendmail.html.php
index eaf864d652..bb4c80b87f 100644
--- a/module/story/view/sendmail.html.php
+++ b/module/story/view/sendmail.html.php
@@ -18,7 +18,7 @@
|
color) ? '#333' : $story->color;?>
- config->mail, 'domain', common::getSysURL()) . helper::createLink('story', 'view', "storyID=$story->id"), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
+ config->mail, 'domain', common::getSysURL()) . helper::createLink('story', 'view', "storyID=$story->id", 'html'), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
|
diff --git a/module/task/view/sendmail.html.php b/module/task/view/sendmail.html.php
index acdb53ed49..f104d75895 100644
--- a/module/task/view/sendmail.html.php
+++ b/module/task/view/sendmail.html.php
@@ -18,7 +18,7 @@
|
color) ? '#333' : $task->color;?>
- config->mail, 'domain', common::getSysURL()) . helper::createLink('task', 'view', "taskID=$task->id"), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
+ config->mail, 'domain', common::getSysURL()) . helper::createLink('task', 'view', "taskID=$task->id", 'html'), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
|
diff --git a/module/testtask/view/sendmail.html.php b/module/testtask/view/sendmail.html.php
index d688899982..492605756e 100644
--- a/module/testtask/view/sendmail.html.php
+++ b/module/testtask/view/sendmail.html.php
@@ -18,7 +18,7 @@
|
color) ? '#333' : $testtask->color;?>
- config->mail, 'domain', common::getSysURL()) . helper::createLink('testtask', 'view', "testtaskID=$testtask->id"), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
+ config->mail, 'domain', common::getSysURL()) . helper::createLink('testtask', 'view', "testtaskID=$testtask->id", 'html'), $mailTitle, '', "style='color: {$color}; text-decoration: underline;'");?>
|