Merge remote branch 'upstream/master' into BUG-9508

This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-10-04 15:25:38 -04:00
36 changed files with 1315 additions and 452 deletions

View File

@@ -2264,6 +2264,7 @@ class XmlForm_Field_Link extends XmlForm_Field {
$html .= (($this->onclick) ? ' onclick="' . htmlentities ( $onclick, ENT_QUOTES, 'utf-8' ) . '"' : '') ;
$html .= (($this->target) ? ' target="' . htmlentities ( $target, ENT_QUOTES, 'utf-8' ) . '"' : '') . '>';
$html .= $this->htmlentities ( $this->value === '' ? $label : $value, ENT_QUOTES, 'utf-8' ) . '</a>';
$html .= $this->renderHint();
return $html;
}