phpgroupware-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-developers] tts newticket.php


From: Peter Moulding
Subject: [Phpgroupware-developers] tts newticket.php
Date: Mon, 8 Apr 2002 14:52:08 +1000

New tickets are created with a zero ticket_timestamp_opened with MySQL
in RC2. I tried to change the column to have a default of
UNIX_TIMESTAMP() but MySQL does not seem to accept functions in
defaults. Hence the following quick changes:

Extra field in insert:
                        . ", ticket_customer"
                        . ", ticket_timestamp_opened"
                        . ") values ('"


Extra value in insert:
                        . ",'" . $ticket['customer'] . "'"
                        . "," . time()
                        . ")",__LINE__,__FILE__);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]