Changeset 1053 in svn for trunk/htdocs/common/header.tpl.php
- Timestamp:
- 2012-07-27T07:17:42Z (6 years ago)
- Location:
- trunk/htdocs/common
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/common/header.tpl.php
r1052 r1053 2 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 3 <head> 4 <?php 5 echo <<<HEAD 6 <meta http-equiv="Content-Type" content="text/html; charset=$config[charset]" /> 7 <meta http-equiv="Content-Language" content="$config[lang]" /> 8 <script type="text/javascript" src="tablesort.js" charset="$config[charset]"></script> 9 HEAD; 10 ?> 4 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['config']['charset']; ?>" /> 5 <meta http-equiv="Content-Language" content="<?php echo $GLOBALS['config']['charset']; ?>" /> 6 <script type="text/javascript" src="tablesort.js"></script> 11 7 12 <link rel="stylesheet" type="text/css" href="xcache.css" /> 13 <title><?php echo sprintf(_("XCache %s Administration"), $xcache_version); ?></title> 8 <link rel="stylesheet" type="text/css" href="../common/common.css" /> 9 <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['module']; ?>.css" /> 10 <title><?php echo $title = sprintf("XCache %s", $xcache_version = defined('XCACHE_VERSION') ? XCACHE_VERSION : '') . " - " . ucfirst($GLOBALS['module']); ?></title> 14 11 </head> 15 12 16 13 <body> 17 <h1><?php echo sprintf(_("XCache %s Administration"), $xcache_version); ?></h1> 14 <h1><?php echo $title; ?></h1> 15 <div class="switcher"><?php echo moduleswitcher(); ?></div>
Note: See TracChangeset
for help on using the changeset viewer.