Changeset 67 for trunk/includes/global.php
- Timestamp:
- Feb 5, 2009, 11:12:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global.php
r65 r67 135 135 function ShowPage() 136 136 { 137 global $Config, $Database ;137 global $Config, $Database, $RSSChannels; 138 138 139 139 echo('<?xml version="1.0" encoding="'.$Config['Web']['Charset'].'"?> … … 144 144 <link rel="stylesheet" href="'.$Config['Web']['BaseURL'].'style/style.css" type="text/css" media="all" /> 145 145 <script type="text/javascript" src="'.$Config['Web']['BaseURL'].'style/global.js"></script> 146 <link rel="SHORTCUT ICON" href="'.$Config['Web']['BaseURL'].'images/favicon.ico" /> 147 <title>Projekt překládání textů WoW</title> 146 <link rel="SHORTCUT ICON" href="'.$Config['Web']['BaseURL'].'images/favicon.ico" />'); 147 if(isset($RSSChannels)) 148 foreach($RSSChannels as $Channel) 149 echo(' <link rel="alternate" title="'.$Channel['Title'].'" href="'.$Channel['URL'].'" type="application/rss+xml">'); 150 echo('<title>Projekt překládání textů WoW</title> 148 151 </head> 149 152 <body>'); … … 197 200 } 198 201 199 ShowPage();200 201 202 function ShowFooter() 202 203 {
Note:
See TracChangeset
for help on using the changeset viewer.