Ignore:
Timestamp:
Dec 26, 2013, 7:37:44 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Volba pro trvalé přihlášení uživatele.
  • Opraveno: Ošetření chyb v SQL dotazech při povýšení verze databáze.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Setup/Setup.php

    r613 r619  
    9797        {
    9898          $Output .= '<h3>Povýšení</h3>';
    99           $Output .= $this->System->Setup->Upgrade();
    100           $Output .= $this->ControlPanel();
     99          try {   
     100            $Output .= $this->System->Setup->Upgrade();
     101          } catch (Exception $E) {
     102                  $Output .= $this->SystemMessage('Chyba aktualizace', 'Došlo k chybě v SQL dotazu při aktualizaci: <br/>'.$E->getMessage());
     103            }
     104                $Output .= $this->ControlPanel();
    101105        } else
    102106        if($Action == 'install')
Note: See TracChangeset for help on using the changeset viewer.