Changeset 389 for administrace/user.php


Ignore:
Timestamp:
Oct 8, 2008, 12:42:58 PM (16 years ago)
Author:
george
Message:
  • Upraveno: Kódování všech souborů webu bylo převedeno z ISO 8859-2 na obecné UTF-8.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • administrace/user.php

    r317 r389  
    44{
    55  var $SessionTimeout = 30; // minutes
    6  
     6
    77  function Check()
    88  {
     
    2020    return($_SESSION['UserId'] != 0);
    2121  }
    22  
     22
    2323  function Login($Username, $Password)
    2424  {
     
    2727    $DbResult = $Database->select('account', 'Id,username', '(gmlevel > 0) AND (username = "'.$Username.'") AND (sha_pass_hash = SHA1(CONCAT(UCASE("'.$Username.'"),":",UCASE("'.$Password.'"))))');
    2828    if($DbResult->num_rows > 0)
    29     { 
     29    {
    3030      $User = $DbResult->fetch_array();
    3131      $_SESSION['UserId'] = $User['Id'];
    3232      $_SESSION['UserName'] = $User['username'];
    33       echo('Byl jste pøihlá¹en.<br>');
     33      echo('Byl jste přihlášen.<br>');
    3434    } else {
    35       echo('Pøístup nepovolen!<br>');
    36     } 
     35      echo('Přístup nepovolen!<br>');
     36    }
    3737  }
    38  
     38
    3939  function Logout()
    4040  {
    4141    $_SESSION['UserId'] = 0;
    42     echo('Byl jste odhlá¹en.<br>');
     42    echo('Byl jste odhlášen.<br>');
    4343  }
    4444}
Note: See TracChangeset for help on using the changeset viewer.