r51642 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r51641‎ | r51642 | r51643 >
Date:14:20, 9 June 2009
Author:catrope
Status:deferred
Tags:
Comment:
Vector skin: don't use short PHP tags (like <?= $varname ?>), breaks in certain environments
Modified paths:
  • /trunk/phase3/skins/Vector.php (modified) (history)

Diff [purge]

Index: trunk/phase3/skins/Vector.php
@@ -542,7 +542,7 @@
543543 <h5><?php $this->msg('personaltools') ?></h5>
544544 <ul <?php $this->html('userlangattributes') ?>>
545545 <?php foreach($this->data['personal_urls'] as $key => $item): ?>
546 - <li <?= $item['attributes'] ?>><a href="<?php echo htmlspecialchars($item['href']) ?>"<?php echo $item['key'] ?><?php if(!empty($item['class'])): ?> class="<?php echo htmlspecialchars($item['class']) ?>"<?php endif; ?>><?php echo htmlspecialchars($item['text']) ?></a></li>
 546+ <li <?php echo $item['attributes'] ?>><a href="<?php echo htmlspecialchars($item['href']) ?>"<?php echo $item['key'] ?><?php if(!empty($item['class'])): ?> class="<?php echo htmlspecialchars($item['class']) ?>"<?php endif; ?>><?php echo htmlspecialchars($item['text']) ?></a></li>
547547 <?php endforeach; ?>
548548 </ul>
549549 </div>

Status & tagging log