Index: trunk/phase3/skins/Vector.php |
— | — | @@ -718,7 +718,7 @@ |
719 | 719 | <div class="menu"> |
720 | 720 | <ul <?php $this->html('userlangattributes') ?>> |
721 | 721 | <?php foreach ($this->data['variant_urls'] as $key => $link ): ?> |
722 | | - <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li> |
| 722 | + <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo str_replace( ' ', ' ', htmlspecialchars( $link['text'] ) ) ?></a></li> |
723 | 723 | <?php endforeach; ?> |
724 | 724 | </ul> |
725 | 725 | </div> |
— | — | @@ -748,7 +748,7 @@ |
749 | 749 | <div class="menu"> |
750 | 750 | <ul <?php $this->html('userlangattributes') ?>> |
751 | 751 | <?php foreach ($this->data['action_urls'] as $key => $link ): ?> |
752 | | - <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo htmlspecialchars( $link['text'] ) ?></a></li> |
| 752 | + <li<?php echo $link['attributes'] ?>><a href="<?php echo htmlspecialchars( $link['href'] ) ?>" <?php echo $link['key'] ?>><?php echo str_replace( ' ', ' ', htmlspecialchars( $link['text'] ) ) ?></a></li> |
753 | 753 | <?php endforeach; ?> |
754 | 754 | </ul> |
755 | 755 | </div> |