Commit: 8a567dbb25c953d4bdf485fcae255fb4796eaa4a Author: Hannes Magnusson <[email protected]> Wed, 4 Dec 2013 11:01:13 -0800 Parents: 42853fd91a7abdde143809c269984cdb691c992a Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=8a567dbb25c953d4bdf485fcae255fb4796eaa4a Log: Revert "fix header" This reverts commit 42853fd91a7abdde143809c269984cdb691c992a. Changed paths: M include/header.inc Diff: diff --git a/include/header.inc b/include/header.inc index 039ab32..bb0ba9b 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 ?> <!--[if lte IE 7]> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
