openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8b068a002395f8e7273e19a34e7aecea23097aa3
parent a2525c9f0b39326e7b1ee821176456e0dacf7ab9
Author: dankert <devnull@localhost>
Date:   Mon, 20 Apr 2009 00:38:48 +0200

Tags im HTML-Kopf nicht schließen, da sonst Verletzung der HTML4-DTD.

Diffstat:
themes/default/include/html/page.inc.php | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/themes/default/include/html/page.inc.php b/themes/default/include/html/page.inc.php @@ -4,25 +4,25 @@ <html> <head> <title><?php echo isset($attr_title)?$attr_title.' - ':(isset($windowTitle)?lang($windowTitle).' - ':'') ?><?php echo $cms_title ?></title> - <meta http-equiv="content-type" content="text/html; charset=<?php echo $charset ?>" /> - <meta name="MSSmartTagsPreventParsing" content="true" /> - <meta name="robots" content="noindex,nofollow" /> + <meta http-equiv="content-type" content="text/html; charset=<?php echo $charset ?>" > + <meta name="MSSmartTagsPreventParsing" content="true" > + <meta name="robots" content="noindex,nofollow" > <?php if (isset($windowMenu) && is_array($windowMenu)) foreach( $windowMenu as $menu ) { ?> - <link rel="section" href="<?php echo Html::url($actionName,@$menu['subaction'],$this->getRequestId() ) ?>" title="<?php echo lang($menu['text']) ?>" /> + <link rel="section" href="<?php echo Html::url($actionName,@$menu['subaction'],$this->getRequestId() ) ?>" title="<?php echo lang($menu['text']) ?>" > <?php } ?><?php if (isset($metaList) && is_array($metaList)) foreach( $metaList as $meta ) { ?> - <link rel="<?php echo $meta['name'] ?>" href="<?php echo $meta['url'] ?>" title="<?php echo lang($meta['title']) ?>" /><?php + <link rel="<?php echo $meta['name'] ?>" href="<?php echo $meta['url'] ?>" title="<?php echo lang($meta['title']) ?>" ><?php } ?><?php if(!empty($root_stylesheet)) { ?> - <link rel="stylesheet" type="text/css" href="<?php echo $root_stylesheet ?>" /> + <link rel="stylesheet" type="text/css" href="<?php echo $root_stylesheet ?>" > <?php } ?> <?php if($root_stylesheet!=$user_stylesheet) { ?> - <link rel="stylesheet" type="text/css" href="<?php echo $user_stylesheet ?>" /> + <link rel="stylesheet" type="text/css" href="<?php echo $user_stylesheet ?>" > <?php } ?> </head>