Bug #2305 » 2305.patch
administrator/components/com_comprofiler/plugin.class.php | ||
---|---|---|
$htmlDescription = ( $output == 'htmledit' ? $this->getFieldDescription( $field, $user, 'htmledit', $reason ) : null );
|
||
|
||
if ( $output == 'htmledit' ) {
|
||
$labelTitle = ( trim( strip_tags( $htmlDescription ) ) ? ' title="' . htmlspecialchars( $translatedTitle ) . ':' . htmlspecialchars( $htmlDescription ) . '"' : '' );
|
||
$labelTitle = ( trim( strip_tags( $htmlDescription ) ) ? ' title="' . htmlspecialchars( $translatedTitle ) . ':' . htmlspecialchars( trim( strip_tags( $htmlDescription ) ) ) . '"' : '' );
|
||
// removed in fieldEditToHtml
|
||
} else {
|
||
$labelTitle = '';
|
||
... | ... | |
$inputName = $field->name;
|
||
|
||
$htmlDescription = $this->getFieldDescription( $field, $user, 'htmledit', $reason );
|
||
$titleAttr = ( trim( strip_tags( $htmlDescription ) ) ? ' title="' . htmlspecialchars( $this->getFieldTitle( $field, $user, 'html', $reason ) ) . ': ' . htmlspecialchars( $htmlDescription ) . '"' : '' );
|
||
$titleAttr = ( trim( strip_tags( $htmlDescription ) ) ? ' title="' . htmlspecialchars( $this->getFieldTitle( $field, $user, 'html', $reason ) ) . ': ' . htmlspecialchars( trim( strip_tags( $htmlDescription ) ) ) . '"' : '' );
|
||
|
||
$htmlInput = null;
|
||
switch ( $type ) {
|
- « Previous
- 1
- 2
- Next »