Changeset 627 for trunk/inc


Ignore:
Timestamp:
Aug 19, 2009, 9:06:06 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Strkutura a názvy tabulek gm_tym, finance, finance_rewards.
  • Upraveno: Stránka informací o serveru doplněna pro podporu zobrazení více fyzických serverů.
  • Přidáno: Zobrazení dřívějších GM v dolní částí stránky GM týmu.
Location:
trunk/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/inc/config.sample.php

    r624 r627  
    6060    'ShowSQLQuery' => false,
    6161    'ShowPHPError' => false,
    62     'OS' => 'GNU/Linux',
    6362    'ServerFounded' => '1.1.2000',
    64     'CPU' => 'AMD Athlon 64 X2 5600+, 2,8 GHz',
    65     'Memory' => '8 GB DDR2 800 MHz dual channel',
    66     'HDD' => 'WD Green 1 TB, 32 MB cache',
    67     'Internet' => '16/16 Mbit/s, agregace 1:32',
    6863    'BankAccount' => '670100-2202937132/6210',
     64    'ServerList' => array(
     65      array(
     66        'OS' => 'GNU/Linux',
     67        'CPU' => 'AMD Athlon 64 X2 5600+, 2,8 GHz',
     68        'Memory' => '8 GB DDR2 800 MHz dual channel',
     69        'HDD' => 'WD Green 1 TB, 32 MB cache',
     70        'Address' => 'localhost',
     71        'Internet' => '16/16 Mbit/s, agregace 1:32',
     72        'Realms' => array(1),
     73        'Statistic' => 'http://localhost/stat/',
     74      },
     75    },
    6976  ),
    7077  'CheckRegistration' => array
  • trunk/inc/server.php

    r625 r627  
    1919    $date_arr = explode(' ', $date);
    2020    $date = explode('-', $date_arr[0]);
    21     $time_stp = explode(':', $date_arr[1]);
     21    if(count($date_arr) > 1) $time_stp = explode(':', $date_arr[1]);
     22      else $time_stp = array(0, 0, 0);
    2223    $time = mktime($time_stp[0], $time_stp[1], $time_stp[2], $date[1], $date[2], $date[0]);
    2324    if($time == 1) $human_date = date('d.m.Y H:i:s', $time);
Note: See TracChangeset for help on using the changeset viewer.