mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Fix %s as value in description widget
This commit is contained in:
parent
3ccfe3fb93
commit
42368769a0
@ -122,6 +122,12 @@ var et2_description = et2_baseWidget.extend([et2_IDetachedDOM],
|
|||||||
set_value: function(_value) {
|
set_value: function(_value) {
|
||||||
if(!_value) _value = "";
|
if(!_value) _value = "";
|
||||||
else
|
else
|
||||||
|
if (this.span.text() != _value)
|
||||||
|
{
|
||||||
|
var spliter = this.span.text().replace(/%s/g,_value);
|
||||||
|
if (spliter !="")
|
||||||
|
_value = spliter;
|
||||||
|
}
|
||||||
if (!this.options.no_lang) _value = this.egw().lang(_value);
|
if (!this.options.no_lang) _value = this.egw().lang(_value);
|
||||||
et2_insertLinkText(this._parseText(_value),
|
et2_insertLinkText(this._parseText(_value),
|
||||||
this.span[0],
|
this.span[0],
|
||||||
|
Loading…
Reference in New Issue
Block a user