Changeset 556 for trunk/includes


Ignore:
Timestamp:
Jul 29, 2013, 10:06:28 PM (12 years ago)
Author:
chronos
Message:
  • Modified: Game client version table transformed to application module ClientVersion.
Location:
trunk/includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/Version.php

    r555 r556  
    11<?php
    22
    3 $Revision = 555; // Subversion revision
     3$Revision = 556; // Subversion revision
    44$DatabaseRevision = 543; // Database structure revision
    55$ReleaseTime = '2013-07-29';
  • trunk/includes/global.php

    r555 r556  
    2222include_once(dirname(__FILE__).'/../Modules/Import/Import.php');
    2323include_once(dirname(__FILE__).'/../Modules/Server/Server.php');
     24include_once(dirname(__FILE__).'/../Modules/ClientVersion/ClientVersion.php');
    2425include_once(dirname(__FILE__).'/../Modules/FrontPage/FrontPage.php');
    2526
     
    7576  $System->ModuleManager->RegisterModule(new ModuleImport($System));
    7677  $System->ModuleManager->RegisterModule(new ModuleServer($System));
     78  $System->ModuleManager->RegisterModule(new ModuleClientVersion($System));
    7779  $System->ModuleManager->StartAll();
    7880}
  • trunk/includes/system.php

    r555 r556  
    8787                                'Permission' => LICENCE_ANONYMOUS,
    8888                                'Icon' => '',
    89                 ),
    90                 array(
    91                                 'Title' => 'Verze hry',
    92                                 'Hint' => 'Seznam verzí herního klienta',
    93                                 'Link' => $this->Link('/version.php'),
    94                                 'Permission' => LICENCE_ANONYMOUS,
    95                                 'Icon' => '',
    96                 ),
     89                ),             
    9790                array(
    9891                                'Title' => 'IRC chat',
Note: See TracChangeset for help on using the changeset viewer.