BUG 6834 PM 2.0.11 El link dentro de las grillas no esta pasando en modo vista

This issue was fixed, now the link in view mode is showing only the name
This commit is contained in:
Carlos Pacha
2011-06-09 18:56:22 -04:00
parent ae3f158d2c
commit 210957b529

View File

@@ -2016,7 +2016,7 @@ class XmlForm_Field_Link extends XmlForm_Field {
} else { } else {
$html = ""; $html = "";
$html .= '<span id="form['. $this->name . ']">'; $html .= '<span id="form['. $this->name . ']">';
$html .= $this->htmlentities ( $link, ENT_QUOTES, 'utf-8' ); $html .= $this->htmlentities ( $this->value === '' ? $label : $value, ENT_QUOTES, 'utf-8' );
$html .= '</span>'; $html .= '</span>';
} }