Commit: b998705d5240b66088d9926c70a9734ac30574a9 Author: krakjoe <[email protected]> Wed, 4 Dec 2013 18:54:29 +0000 Parents: 46d266b882cb253835b5e0a69f8cae3342a803bc Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=b998705d5240b66088d9926c70a9734ac30574a9 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 ?> <!--[if lte IE 7]> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
