Search found 2 matches

by Diouzshev
16 Mar 2006, 07:46
Forum: Customizations
Topic: MS Outlook integration?
Replies: 14
Views: 32634

:)

About first:
Describe in readme custom field "due_date", else current code don't work propetly.

About second:
Its critical error: current code can't run (config parameter not found)

About thrid:
This flag I found in the file_download.php, survay its code.

Four:
What are you have ...
by Diouzshev
15 Mar 2006, 12:11
Forum: Customizations
Topic: MS Outlook integration?
Replies: 14
Views: 32634

Hi!
Posted code contains some bugs:

$duedat = mktime(0,0,0,date("m"),date("d"),date("Y"));
need replace to:
$duedat = date("Ymd");
cause:
Outlook can't open files (Bad file format).

if ( config_get( 'due_date')==ON) {
need replace to:
if ( config_get( 'show_cal')==ON) {
or:
if ( config_get( 'show ...