BUG 7955 this issue was fixed.

This commit is contained in:
Alvaro Campos
2011-11-17 09:40:01 -04:00
parent 9471a6cb60
commit 2b8f40f03f
11 changed files with 73 additions and 81 deletions

View File

@@ -73,9 +73,6 @@ class Task extends BaseTask {
$lang = defined ( 'SYS_LANG') ? SYS_LANG : 'en';
if ($this->tas_title !== $v || $v==="") {
$this->tas_title = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_TITLE', $this->getTasUid(), $this->tas_title);
$res = Content::addContent( 'TAS_TITLE', '', $this->getTasUid(), $lang, $this->tas_title );
return $res;
@@ -116,9 +113,6 @@ class Task extends BaseTask {
if ($this->tas_description !== $v || $v==="") {
$this->tas_description = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DESCRIPTION', $this->getTasUid(), $this->tas_description);
$res = Content::addContent( 'TAS_DESCRIPTION', '', $this->getTasUid(), $lang, $this->tas_description );
return $res;
}
@@ -158,9 +152,6 @@ class Task extends BaseTask {
if ($this->tas_def_title !== $v || $v==="") {
$this->tas_def_title = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DEF_TITLE', $this->getTasUid(), $this->tas_def_title);
$res = Content::addContent( 'TAS_DEF_TITLE', '', $this->getTasUid(), $lang, $this->tas_def_title );
return $res;
}
@@ -200,9 +191,6 @@ class Task extends BaseTask {
if ($this->tas_def_description !== $v || $v==="") {
$this->tas_def_description = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DEF_DESCRIPTION', $this->getTasUid(), $this->tas_def_description);
$res = Content::addContent( 'TAS_DEF_DESCRIPTION', '', $this->getTasUid(), $lang, $this->tas_def_description );
return $res;
}
@@ -242,9 +230,6 @@ class Task extends BaseTask {
if ($this->tas_def_proc_code !== $v || $v==="") {
$this->tas_def_proc_code = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DEF_PROC_CODE', $this->getTasUid(), $this->tas_def_proc_code);
$res = Content::addContent( 'TAS_DEF_PROC_CODE', '', $this->getTasUid(), $lang, $this->tas_def_proc_code );
return $res;
}
@@ -285,9 +270,6 @@ class Task extends BaseTask {
if ($this->tas_def_message !== $v || $v==="") {
$this->tas_def_message = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DEF_MESSAGE', $this->getTasUid(), $this->tas_def_message);
$res = Content::addContent( 'TAS_DEF_MESSAGE', '', $this->getTasUid(), $lang, $this->tas_def_message );
return $res;
}
@@ -332,9 +314,6 @@ class Task extends BaseTask {
if ($this->tas_def_subject_message !== $v || $v==="") {
$this->tas_def_subject_message = $v;
//verify the content for base language
Content::copyContentOnBaseLanguageIfNotExists('TAS_DEF_SUBJECT_MESSAGE', $this->getTasUid(), $this->tas_def_subject_message);
$res = Content::addContent( 'TAS_DEF_SUBJECT_MESSAGE', '', $this->getTasUid(), $lang, $this->tas_def_subject_message );
return $res;