diff options
author | thomascube <thomas@roundcube.net> | 2006-05-01 14:14:54 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-01 14:14:54 +0000 |
commit | a4bafb40979b578951863cb1ae49c95d4a02cb9b (patch) | |
tree | 056e4e9d812f6690c0ebf1e9d05c8fc1d1db45db | |
parent | e6f36058e7fc7e3e564e4a9fb2fb3f63b6bf06e2 (diff) |
Applied patches by Mark Bucciarelli
-rw-r--r-- | README | 18 | ||||
-rw-r--r-- | program/lib/imap.inc | 2 |
2 files changed, 19 insertions, 1 deletions
@@ -39,6 +39,24 @@ already have a corresponding entry in the user's table (username and hostname) will be allowed. +Code Layout: +------------ + +Basic sequence (index.php): + - index.php -> load_gui -> parse_template + - authentication details in this sequence + +Tasks + - index.php limits tasks to set list + - can see task in roundcube link when you mouse over it + - task templates stored in skins/default/templates + - templates "roundcube:" tokens that get replaced in parse_template + +program/include/rcube_shared.inc + - defines rcube_html_page, class that lays out a roundcube web page + - defines form control classes + + Installation: ------------- For detailed instructions on how to install RoundCube webmail on your server, diff --git a/program/lib/imap.inc b/program/lib/imap.inc index 6067d81b8..9f63cdc33 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -613,7 +613,7 @@ function iil_StrToTime($str){ //$month_a=array("Jan"=>1,"Feb"=>2,"Mar"=>3,"Apr"=>4,"May"=>5,"Jun"=>6,"Jul"=>7,"Aug"=>8,"Sep"=>9,"Oct"=>10,"Nov"=>11,"Dec"=>12); $month_str=$a[1]; $month=$IMAP_MONTHS[$month_str]; - $day=$a[0]; + $day=(int)$a[0]; $year=$a[2]; $time=$a[3]; $tz_str = $a[4]; |