[Openfirst-cvscommit] base/config version.php,1.3,1.4
Brought to you by:
xtimg
From: <xt...@us...> - 2003-12-28 21:23:27
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1:/tmp/cvs-serv9415 Modified Files: version.php Log Message: Fix issue with filenames containing spaces, Bug ID #9 Index: version.php =================================================================== RCS file: /cvsroot/openfirst/base/config/version.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** version.php 28 Dec 2003 21:12:44 -0000 1.3 --- version.php 28 Dec 2003 21:23:21 -0000 1.4 *************** *** 69,73 **** $fil = str_replace("../$mod/", "", $filename); if(is_readable($filename) && function_exists("md5_file")) { ! @include("http://update.openfirst.org/newupdate/versions.php?showgood=f&md5=" . md5_file($filename) . "&module=$mod&file=$fil"); } unset($filename); --- 69,73 ---- $fil = str_replace("../$mod/", "", $filename); if(is_readable($filename) && function_exists("md5_file")) { ! @include(str_replace(" ", "%20", "http://update.openfirst.org/newupdate/versions.php?showgood=f&md5=" . md5_file($filename) . "&module=$mod&file=$fil")); } unset($filename); |