[phpcvsview-cvs-updates] phpcvsview phpcvs.php,1.19,1.20
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Brian C. <bch...@us...> - 2005-01-23 00:55:34
|
Update of /cvsroot/phpcvsview/phpcvsview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10782 Modified Files: phpcvs.php Log Message: Fixed a problem under Win32/IIS5/PHP5 where the %T in function strftime doesn't work. The %T has been replaced with %H:%M:%S. Index: phpcvs.php =================================================================== RCS file: /cvsroot/phpcvsview/phpcvsview/phpcvs.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** phpcvs.php 8 Jan 2005 04:57:01 -0000 1.19 --- phpcvs.php 23 Jan 2005 00:55:22 -0000 1.20 *************** *** 1032,1036 **** } ! if (!$this->sendArgument(strftime("%d %b %Y %T -0000", $DateTime))) { return false; } --- 1032,1036 ---- } ! if (!$this->sendArgument(strftime("%d %b %Y %H:%M:%S -0000", $DateTime))) { return false; } |