Current is now a class.
git-svn-id: http://svn.automattic.com/wordpress/trunk@475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8395b77e6d
commit
5fcfa1c537
|
@ -11,16 +11,16 @@ foreach ($menu as $item) {
|
||||||
if ($continue) {
|
if ($continue) {
|
||||||
$item = explode("\t", $item);
|
$item = explode("\t", $item);
|
||||||
// 0 = user level, 1 = file, 2 = name
|
// 0 = user level, 1 = file, 2 = name
|
||||||
if (substr($PHP_SELF, -6) == substr($item[1], -6)) $class = ' id="current"';
|
if (substr($PHP_SELF, -7) == substr($item[1], -7)) $class = ' class="current"';
|
||||||
if ($user_level >= $item[0]) echo "\n\t<li><a href='{$item[1]}'$class>{$item[2]}</a></li>";
|
if ($user_level >= $item[0]) echo "\n\t<li><a href='{$item[1]}'$class>{$item[2]}</a></li>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<li><a href="javascript:profile(<?php echo $user_ID ?>)">My Profile</a></li>
|
<li><a href="javascript:profile(<?php echo $user_ID ?>)">My Profile</a></li>
|
||||||
<li><a href="<?php echo "$siteurl/$blogfilename"; ?>">View site</a></li>
|
<li><a href="<?php echo "$siteurl/$blogfilename"; ?>">View site</a></li>
|
||||||
<li class="last"><a href="<?php echo $siteurl ?>/b2login.php?action=logout">Logout (<?php echo stripslashes($user_nickname) ?>)</a></li>
|
<li class="last"><a href="<?php echo $siteurl ?>/b2login.php?action=logout">Logout (<?php echo stripslashes($user_nickname) ?>)</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2 id="top"><?php echo $title; ?></h2>
|
<h2><?php echo $title; ?></h2>
|
Loading…
Reference in New Issue