webmail / Uebimiau shows the wrong date on 64-bit systems

If you have a weird timestamp when viewing the email in Uebimiau, then edit:

/var/www/html/webmail/smarty/plugins/shared.make_timestamp.php

and change:

if(empty($string)) {
  $string = "now";
}
$time = strtotime($string);

to

if(empty($string)) {
  $string = "now";
} else if(is_numeric($string)) {
  return (int)$string;
}
$time = strtotime($string);
 
troubles/uebimiau.txt · Last modified: 2010/02/21 21:28 by muscardin
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Please visit Automatic Backlinks to start earning free backlinks Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki