Changeset a4bafb4 in github


Ignore:
Timestamp:
May 1, 2006 10:14:54 AM (7 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
6204390
Parents:
e6f3605
Message:

Applied patches by Mark Bucciarelli

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • README

    r977a295e ra4bafb4  
    4040 
    4141 
     42Code Layout: 
     43------------ 
     44 
     45Basic sequence (index.php): 
     46  - index.php -> load_gui -> parse_template 
     47  - authentication details in this sequence 
     48 
     49Tasks 
     50  - index.php limits tasks to set list 
     51  - can see task in roundcube link when you mouse over it 
     52  - task templates stored in skins/default/templates 
     53  - templates "roundcube:" tokens that get replaced in parse_template 
     54 
     55program/include/rcube_shared.inc 
     56  - defines rcube_html_page, class that lays out a roundcube web page 
     57  - defines form control classes 
     58 
     59 
    4260Installation: 
    4361------------- 
  • program/lib/imap.inc

    re6f3605 ra4bafb4  
    614614        $month_str=$a[1]; 
    615615        $month=$IMAP_MONTHS[$month_str]; 
    616         $day=$a[0]; 
     616        $day=(int)$a[0]; 
    617617        $year=$a[2]; 
    618618        $time=$a[3]; 
Note: See TracChangeset for help on using the changeset viewer.