Changeset 396 for beta/inc/server.php


Ignore:
Timestamp:
Oct 27, 2008, 7:32:04 AM (16 years ago)
Author:
george
Message:
  • Přidáno: Stránka dotací a přidávání nových položek dorací. * Přidáno: Stránka zobrazení arénových týmů. * Přidáno: Vkládání aktualit.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • beta/inc/server.php

    r393 r396  
    77      }
    88      // --
    9       public function HumanDate ($date)
     9      public function HumanDate ($date,$time = 1)
    1010      {
    1111        // input date is 0000-00-00 00:00:00
     
    1414        $time_stp = explode(":",$date_arr[1]);
    1515        $time = mktime($time_stp[0],$time_stp[1],$time_stp[2],$date[1],$date[2],$date[0]);
    16         $human_date = date ("d.m.Y H:i:s",$time);
     16        if ($time == 1)
     17        {
     18          $human_date = date ("d.m.Y H:i:s",$time);
     19        }
     20        else
     21        {
     22          $human_date = date ("d.m.Y",$time);
     23        }
    1724        return $human_date;
    1825      }
Note: See TracChangeset for help on using the changeset viewer.