Changeset 61 for trunk/includes
- Timestamp:
- Feb 4, 2009, 9:51:34 PM (16 years ago)
- Location:
- trunk/includes
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.sample.php
r50 r61 18 18 'AdminEmail' => 'admin@localhost', 19 19 'ShowSQLError' => false, 20 'ShowPHPError' => false, 20 21 ), 21 22 ); -
trunk/includes/global.php
r60 r61 13 13 14 14 include('config.php'); 15 include_once('error.php'); 15 16 include('databaseconection.php'); 16 17 include('global_function.php'); … … 149 150 150 151 if(!array_key_exists('UserID', $_SESSION)) $_SESSION['UserID'] = ''; 152 if(!array_key_exists('User', $_SESSION)) $_SESSION['User'] = 'NotRegistred'; 153 151 154 // Přihlášení 152 155 if(array_key_exists('LoginUser', $_POST)) -
trunk/includes/global_function.php
r59 r61 5 5 define('LICENCE_MODERATOR', 1); 6 6 define('LICENCE_ADMIN', 2); 7 8 function utf2ascii($text) 9 { 10 $return = Str_Replace( 11 Array("á","č","ď","é","ě","í","ľ","ň","ó","ř","š","ť","ú","ů","ý","ž","Á","Č","Ď","É","Ě","Í","Ľ","Ň","Ó","Ř","Š","Ť","Ú","Ů","Ý","Ž") , 12 Array("a","c","d","e","e","i","l","n","o","r","s","t","u","u","y","z","A","C","D","E","E","I","L","N","O","R","S","T","U","U","Y","Z") , 13 $text); 14 //$return = Str_Replace(Array(" ", "_"), "-", $return); //nahradí mezery a podtržítka pomlčkami 15 //$return = Str_Replace(Array("(",")",".","!",",","\"","'"), "", $return); //odstraní ().!,"' 16 //$return = StrToLower($return); // velká písmena nahradí malými. 17 return($return); 18 } 7 19 8 20 function FormatOutput($s)
Note:
See TracChangeset
for help on using the changeset viewer.