Index: trunk/extensions/MobileFrontend/MobileFrontend.php |
— | — | @@ -1080,7 +1080,9 @@ |
1081 | 1081 | if ( $redLink->hasAttributes() ) { |
1082 | 1082 | $attributes = $redLink->attributes; |
1083 | 1083 | foreach ( $attributes as $i => $attribute ) { |
1084 | | - $spanNode->setAttribute( $attribute->name, $attribute->value ); |
| 1084 | + if ( $attribute->name != 'href' ) { |
| 1085 | + $spanNode->setAttribute( $attribute->name, $attribute->value ); |
| 1086 | + } |
1085 | 1087 | } |
1086 | 1088 | } |
1087 | 1089 | |