diff --git a/module/group/control.php b/module/group/control.php index 0e7ac737d3..9561f1ea4d 100644 --- a/module/group/control.php +++ b/module/group/control.php @@ -133,7 +133,7 @@ class group extends control $this->group->updateView($groupID); if(dao::isError()) $this->send(array('result' => 'fail', 'message' => dao::getError())); - $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => inlink('browse'))); + $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => 'reload')); } $group = $this->group->getById($groupID); diff --git a/module/group/view/manageview.html.php b/module/group/view/manageview.html.php index e06de2c10f..71f47d1568 100644 --- a/module/group/view/manageview.html.php +++ b/module/group/view/manageview.html.php @@ -74,6 +74,7 @@
diff --git a/module/message/model.php b/module/message/model.php
index 31d05e3620..743ba3e617 100644
--- a/module/message/model.php
+++ b/module/message/model.php
@@ -123,7 +123,8 @@ class messageModel extends model
if($toList == $this->app->user->account) return false;
$moduleName = $objectType == 'case' ? 'testcase' : $objectType;
- $data = $this->app->user->realname . $this->lang->action->label->$actionType . $this->lang->action->objectTypes[$objectType];
+ $space = $this->app->getClientLang() == 'en' ? ' ' : '';
+ $data = $this->app->user->realname . $space . $this->lang->action->label->$actionType . $space . $this->lang->action->objectTypes[$objectType];
$data .= ' ' . html::a(helper::createLink($moduleName, 'view', "id=$objectID"), "[#{$objectID}::{$object->$field}]");
$notify = new stdclass();
diff --git a/module/task/view/view.html.php b/module/task/view/view.html.php
index 5d811ce460..b8ed98dfec 100644
--- a/module/task/view/view.html.php
+++ b/module/task/view/view.html.php
@@ -342,8 +342,8 @@
|
|---|