Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions LinkAttributes.body.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,8 @@ private function doExtractAttributes ( &$text, &$attribs ) {
$pair = explode( '=', $a );

/* Only go ahead if we have a aaa=bbb pattern, and aaa i an allowed attribute */
if ( isset( $pair[1] ) && in_array( $pair[0], self::attrsAllowed ) ) {

/* Add to existing attribute, or create a new */
if ( isset( $attribs[$pair[0]] ) ) {
$attribs[$pair[0]] = $attribs[$pair[0]] . ' ' . $pair[1];
} else {
$attribs[$pair[0]] = $pair[1];
}
if ( isset( $pair[1] ) && in_array( $pair[0], self::$attrsAllowed ) ) {
$attribs[$pair[0]] = (isset($attribs[$pair[0]])) ? $attribs[$pair[0]] . ' ' . $pair[1] : $pair[1];
}

}
Expand Down