Ignore:
Timestamp:
Jan 17, 2016, 12:10:35 PM (8 years ago)
Author:
chronos
Message:
  • Renamed: .htaccess file is different for each installation so provide just example in .htacces.sample file.
  • Renamed: File global.php and system.php to first uppercase letter for naming unification.
  • Modified: More translatable strings.
  • Added: Translation group items translatable.
  • Renamed: admin directory is not Application directory where all application related files should be placed.

This is different to includes directory where just general libraries should be placed.
Version.php file should be located in Application directory.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/includes/System.php

    r847 r848  
    9999    $UpdateManager->Database = $this->Database;
    100100    $UpdateManager->Revision = $DatabaseRevision;
    101     if(!$UpdateManager->IsInstalled()) die('Systém vyžaduje instalaci databáze.');
    102     if(!$UpdateManager->IsUpToDate()) die('Systém vyžaduje aktualizaci databáze.');
     101    if(!$UpdateManager->IsInstalled()) die('Systém vyžaduje instalaci databáze. Pokračujte <a href="'.$this->Link('/Application/install.php').'">zde</a>');
     102    if(!$UpdateManager->IsUpToDate()) die('Systém vyžaduje aktualizaci databáze. Pokračujte <a href="'.$this->Link('/Application/install.php').'">zde</a>');
    103103
    104104    // SQL injection hack protection
Note: See TracChangeset for help on using the changeset viewer.