On Wed, Dec 4, 2013 at 10:54 AM, Joe Watkins <[email protected]> wrote: > Commit: 42853fd91a7abdde143809c269984cdb691c992a > Author: krakjoe <[email protected]> Wed, 4 Dec 2013 18:54:29 > +0000 > Parents: f6d5200c75c51ae9eafda4fc93e5cb24e87f205e > Branches: master > > Link: > http://git.php.net/?p=web/php.git;a=commitdiff;h=42853fd91a7abdde143809c269984cdb691c992a > > Log: > fix header > > Changed paths: > M include/header.inc > > > Diff: > diff --git a/include/header.inc b/include/header.inc > index bb0ba9b..039ab32 100755 > --- a/include/header.inc > +++ b/include/header.inc > @@ -26,31 +26,31 @@ if (isset($shortname) && $shortname) { > <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php echo $lang?>"> > <head> > > - <meta charset="utf-8"> > - <meta name="viewport" content="width=device-width"> > - <meta name="viewport" content="width=device-width, initial-scale=1.0"> > + <meta charset="utf-8" /> > + <meta name="viewport" content="width=device-width" /> > + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
> > <title>PHP: <?php echo $title ?></title> > > - <link rel="shortcut icon" href="<?php echo $STATIC_ROOT ?>favicon.ico"> > - <link rel="search" type="application/opensearchdescription+xml" > href="http://php.net/phpnetimprovedsearch.src" title="Add PHP.net search"> > - <link rel="alternate" type="application/atom+xml" href="<?php echo $MYSITE > ?>releases/feed.php" title="PHP Release feed"> > - <link rel="alternate" type="application/atom+xml" href="<?php echo $MYSITE > ?>feed.atom" title="PHP: Hypertext Preprocessor"> > + <link rel="shortcut icon" href="<?php echo $STATIC_ROOT ?>favicon.ico" /> > + <link rel="search" type="application/opensearchdescription+xml" > href="http://php.net/phpnetimprovedsearch.src" title="Add PHP.net search" /> > + <link rel="alternate" type="application/atom+xml" href="<?php echo $MYSITE > ?>releases/feed.php" title="PHP Release feed" /> > + <link rel="alternate" type="application/atom+xml" href="<?php echo $MYSITE > ?>feed.atom" title="PHP: Hypertext Preprocessor" /> > > <?php if (isset($_SERVER['BASE_PAGE'])): ?> > - <link rel="canonical" href="http://php.net/<?php echo > $_SERVER['BASE_PAGE']?>"> > + <link rel="canonical" href="http://php.net/<?php echo > $_SERVER['BASE_PAGE']?>" /> > <?php if ($shortname): ?> > - <link rel="shorturl" href="<?php echo $shorturl ?>"> > + <link rel="shorturl" href="<?php echo $shorturl ?>" /> > <?php endif ?> > <?php endif ?> > > <?php foreach($config["meta-navigation"] as $rel => $page): ?> > - <link rel="<?php echo $rel ?>" href="<?php echo $MYSITE ?><?php echo $page > ?>"> > + <link rel="<?php echo $rel ?>" href="<?php echo $MYSITE ?><?php echo $page > ?>" /> > <?php endforeach ?> > > - <link > href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic,600italic|Source+Code+Pro&subset=latin,latin-ext' > rel='stylesheet' type='text/css'> > + <link > href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic,600italic|Source+Code+Pro&subset=latin,latin-ext' > rel='stylesheet' type='text/css' /> > <?php foreach($CSS as $filename => $modified): ?> > -<link rel="stylesheet" type="text/css" href="<?php echo $STATIC_ROOT > ?>cached.php?f=styles/<?php echo $filename?>&t=<?php echo $modified?>" > media="screen"> > +<link rel="stylesheet" type="text/css" href="<?php echo $STATIC_ROOT > ?>cached.php?f=styles/<?php echo $filename?>&t=<?php echo $modified?>" > media="screen" /> > <?php endforeach ?> This is not a fix, this is breaking the header. Please revert. -Hannes -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
