Commit: 7c7da0fa4cc5b12472f2a19cec5b3b17eea1df5b Author: Levi Morrison <[email protected]> Fri, 7 Mar 2014 16:22:14 -0700 Parents: e0b2e51c0d6fa9581060f391caab13c3e4dcef8d Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=7c7da0fa4cc5b12472f2a19cec5b3b17eea1df5b Log: Fixed a bug on pages where the prev or next portion of the breadcrumbs would wrap, leaving a gap in the breadcrumbs and the #layout. Changed paths: M include/header.inc Diff: diff --git a/include/header.inc b/include/header.inc old mode 100755 new mode 100644 index 770a2d0..6960081 --- a/include/header.inc +++ b/include/header.inc @@ -110,7 +110,7 @@ if ($config["cache"]) { </div> <?php if (!empty($config['breadcrumbs'])): ?> - <div id="breadcrumbs"> + <div id="breadcrumbs" class="clearfix"> <?php if (isset($config['prev'])): ?> <div class="prev"> <a href="<?php echo $config['prev'][0]; ?>"> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
