Commit: 9ae3d085dfcd66e78f16a058c7ea1589d94332c0 Author: Levi Morrison <[email protected]> Tue, 6 May 2014 12:24:45 -0600 Parents: 9eadfa657bf01dae400502b3df6cb7c88ccb045d Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=9ae3d085dfcd66e78f16a058c7ea1589d94332c0 Log: Re-ordered prev and next Changed paths: M include/header.inc Diff: diff --git a/include/header.inc b/include/header.inc index e7d7b15..414b5a9 100644 --- a/include/header.inc +++ b/include/header.inc @@ -117,13 +117,6 @@ if ($config["cache"]) { <?php if (!empty($config['breadcrumbs'])): ?> <div id="breadcrumbs" class="clearfix"> - <?php if (isset($config['prev'])): ?> - <div class="prev"> - <a href="<?php echo $config['prev'][0]; ?>"> - « <?php echo $config['prev'][1]; ?> - </a> - </div> - <?php endif; ?> <?php if (isset($config['next'])): ?> <div class="next"> <a href="<?php echo $config['next'][0]; ?>"> @@ -131,6 +124,13 @@ if ($config["cache"]) { </a> </div> <?php endif; ?> + <?php if (isset($config['prev'])): ?> + <div class="prev"> + <a href="<?php echo $config['prev'][0]; ?>"> + « <?php echo $config['prev'][1]; ?> + </a> + </div> + <?php endif; ?> <ul class="breadcrumbs-container"> <?php $breadcrumbs = $config['breadcrumbs']; -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
