Skip to content

Commit

Permalink
Fixed indenting of user's profile and actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
igal committed Feb 18, 2010
1 parent 7db354f commit 8e20b6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions OSBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,18 +180,19 @@ class="mediawiki <?php $this->text('dir') ?> <?php $this->text('pageclass') ?> <
</div>
</div>
<div class='sidebar'>
<!-- User profile and actions -->
<ul class="xoxo">
<li class="portlet" id="p-personal">
<h3><?php $this->msg('personaltools') ?></h3>
<ul>
<?php foreach($this->data['personal_urls'] as $key => $item) { ?>
<?php foreach($this->data['personal_urls'] as $key => $item) { ?>
<li id="<?php echo Sanitizer::escapeId( "pt-$key" ) ?>"<?php
if ($item['active']) { ?> class="active"<?php } ?>><a href="<?php
echo htmlspecialchars($item['href']) ?>"<?php echo $skin->tooltipAndAccesskey('pt-'.$key) ?><?php
if(!empty($item['class'])) { ?> class="<?php
echo htmlspecialchars($item['class']) ?>"<?php } ?>><?php
echo htmlspecialchars($item['text']) ?></a></li>
<?php } ?>
<?php } ?>
</ul>
</li>
<?php
Expand Down

0 comments on commit 8e20b6a

Please sign in to comment.