Ignore:
Timestamp:
Oct 15, 2012, 6:41:56 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Tabulky pro správu úkolů. Úkoly jsou řazeny hierarchicky do skupin.
  • Opraveno: Zobrazení typu výčet a nastavení typu čas na aktuální pokud je hodnota prázdná.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Types/DateTime.php

    r442 r445  
    1111    global $MonthNames;
    1212   
    13     if(strtolower($Item['Value']) == 'now') $Item['Value'] = time();
     13    if((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == '')) $Item['Value'] = time();
    1414    $Parts = getdate($Item['Value']);
    1515    $Output = $Parts['mday'].'.'.$Parts['mon'].'.'.$Parts['year'].' '.
     
    2222    global $MonthNames;
    2323
    24     if(strtolower($Item['Value']) == 'now') $Item['Value'] = time();
     24    if((strtolower($Item['Value']) == 'now') or (strtolower($Item['Value']) == '')) $Item['Value'] = time();
    2525    $Parts = getdate($Item['Value']);
    2626
Note: See TracChangeset for help on using the changeset viewer.