Hi, I managed to get helpdesk 0.6.16 working on cents os 5.2. It is all working the only thing is the format the time shows.
This is what the saved updates look like. -0/1-/09 13: 1
Yet the current time displays ok when making an update. 01/13/09 13:50
Any ideas where abouts i can start looking to fix this??
I'm having the same issue!
...anyone?
replace
// $YY = "$date_var[2]$date_var[3]"; // $MM = "$date_var[4]$date_var[5]"; // $DD = "$date_var[6]$date_var[7]"; // $hh = "$date_var[8]$date_var[9]"; // $mm = "$date_var[10]$date_var[11]"; // print " $DD/$MM/$YY $hh:$mm\n"; //$date_formatted = date("m/d/Y", $date_var); // print " $date_formatted \n";
with
$date_var=$row[2]; echo date("d/m/Y H:i",strtotime($date_var));
I've just commented it out // check all your files
Log in to post a comment.
Hi, I managed to get helpdesk 0.6.16 working on cents os 5.2.
It is all working the only thing is the format the time shows.
This is what the saved updates look like.
-0/1-/09 13: 1
Yet the current time displays ok when making an update.
01/13/09 13:50
Any ideas where abouts i can start looking to fix this??
I'm having the same issue!
...anyone?
replace
// $YY = "$date_var[2]$date_var[3]";
// $MM = "$date_var[4]$date_var[5]";
// $DD = "$date_var[6]$date_var[7]";
// $hh = "$date_var[8]$date_var[9]";
// $mm = "$date_var[10]$date_var[11]";
// print " $DD/$MM/$YY $hh:$mm\n";
//$date_formatted = date("m/d/Y", $date_var);
// print " $date_formatted \n";
with
$date_var=$row[2];
echo date("d/m/Y H:i",strtotime($date_var));
I've just commented it out // check all your files