Ignore:
Timestamp:
Aug 24, 2009, 8:53:09 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Podpora pro oprávnění uživatelů a skupin.
  • Upraveno: V include souborech použita cesta aktuálního skriptu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Application/View/User.php

    r71 r76  
    7070    $Result = $this->System->Modules['User']->Login($Form->Values['Username'], $Form->Values['Password']);
    7171    $Output = $this->System->SystemMessage('Přihlášení', $Result);
    72     if($Result <> USER_LOGGED_IN)
     72    if($Result <> $this->System->Translate('UserLoggedIn'))
    7373    {
    7474      $Form->Values['Password'] = '';
     
    9090      $Result = $this->System->Modules['User']->Register($Form->Values['Login'], $Form->Values['Password'], $Form->Values['Password2'], $Form->Values['Email'], $Form->Values['Name']);
    9191      $Output = $this->System->SystemMessage('Registrace nového účtu', $Result);
    92       if($Result <> USER_REGISTRATED)
     92      if($Result <> $this->System->Translate('UserRegistrated'))
    9393      {
    9494        $Form->OnSubmit = '?Module=User&amp;Action=UserRegisterSave';
     
    112112    $Result = $this->System->Modules['User']->PasswordRecoveryRequest($Form->Values['Name'], $Form->Values['Email']);
    113113    $Output = $this->System->SystemMessage('Obnova hesla', $Result);
    114     if($Result <> USER_PASSWORD_RECOVERY_SUCCESS)
     114    if($Result <> $this->System->Translate('UserPasswordRecoverySuccess'))
    115115    {
    116116      $Output .= $Form->ShowEditForm();
Note: See TracChangeset for help on using the changeset viewer.