mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
fix translations for recipients
This commit is contained in:
parent
cb808e0e66
commit
3fb9d140fa
|
@ -687,6 +687,8 @@ console.log(element);
|
|||
$this->contentContainerEnd();
|
||||
}
|
||||
if($enablereceiptworkflow) {
|
||||
$this->contentSubHeading(getMLText("assign_recipients"));
|
||||
$this->contentContainerStart();
|
||||
$options = array();
|
||||
foreach ($docAccess["users"] as $usr) {
|
||||
if (!$enableselfreceipt && $usr->getID()==$user->getID()) continue;
|
||||
|
@ -703,7 +705,7 @@ console.log(element);
|
|||
$fieldwrap = array('', $this->getSelectPresetButtonHtml("IndRecipient", $tmp));
|
||||
}
|
||||
$this->formField(
|
||||
getMLText("assign_recipients"),
|
||||
getMLText("individuals"),
|
||||
array(
|
||||
'element'=>'select',
|
||||
'name'=>'indRecipients[]',
|
||||
|
@ -748,7 +750,7 @@ console.log(element);
|
|||
$fieldwrap = array('', $this->getSelectPresetButtonHtml("GrpRecipient", $tmp));
|
||||
}
|
||||
$this->formField(
|
||||
getMLText("assign_recipients"),
|
||||
getMLText("groups"),
|
||||
array(
|
||||
'element'=>'select',
|
||||
'name'=>'grpRecipients[]',
|
||||
|
@ -761,8 +763,8 @@ console.log(element);
|
|||
array('field_wrap'=>$fieldwrap)
|
||||
);
|
||||
|
||||
$this->contentContainerEnd();
|
||||
}
|
||||
$this->contentContainerEnd();
|
||||
$this->formSubmit(getMLText('update_document'));
|
||||
?>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue
Block a user