Changeset 59 for trunk/includes/global.php
- Timestamp:
- Feb 3, 2009, 9:48:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global.php
r57 r59 1 1 <?php 2 2 3 session_start();3 if(!isset($_SESSION)) session_start(); 4 4 5 5 // SQL injection hack protection … … 76 76 'index.php?Logout' => array(LICENCE_USER, 'Odhlášení ze systému', 'Odhlásit'), 77 77 'log.php' => array(LICENCE_MODERATOR, 'Log dění (Pouze moderátor)', 'Záznamy'), 78 'fill_database.php' => array(LICENCE_ADMIN, 'Načtení questů do database (pouze admin)', 'Import textů z MaNGOSu'),78 'fill_database.php' => array(LICENCE_ADMIN, 'Načtení překladů do database (pouze admin)', 'Import textů z MaNGOSu'), 79 79 //'client_files/generate_SQL.php' => array(LICENCE_ADMIN, 'Generování clientských souborů (pouze admin)', 'Generování C.S.'), 80 80 'https://wow.zdechov.net/mysql/' => array(LICENCE_ADMIN, 'phpMyAdmin(pouze admin)', 'Správa databáze'), … … 140 140 <head> 141 141 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 142 <link rel="stylesheet" href="'.$Config['Web']['BaseURL'].'style .css" type="text/css" media="all" />143 <script type="text/javascript" src="'.$Config['Web']['BaseURL'].' global.js"></script>142 <link rel="stylesheet" href="'.$Config['Web']['BaseURL'].'style/style.css" type="text/css" media="all" /> 143 <script type="text/javascript" src="'.$Config['Web']['BaseURL'].'style/global.js"></script> 144 144 <link rel="SHORTCUT ICON" href="'.$Config['Web']['BaseURL'].'images/favicon.ico" /> 145 145 <title>Projekt překládání textů WoW</title> … … 147 147 <body>'); 148 148 149 // přihlášení 149 if(!array_key_exists('UserID', $_SESSION)) $_SESSION['UserID'] = ''; 150 // Přihlášení 150 151 if(array_key_exists('LoginUser', $_POST)) 151 152 {
Note:
See TracChangeset
for help on using the changeset viewer.