[Openfirst-cvscommit] base/config/functions debug.php,1.9,1.10
Brought to you by:
xtimg
From: Astronouth7303 <ast...@us...> - 2004-12-28 18:28:46
|
Update of /cvsroot/openfirst/base/config/functions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7428/config/functions Modified Files: debug.php Log Message: fixed syntax error in the fopen() call Index: debug.php =================================================================== RCS file: /cvsroot/openfirst/base/config/functions/debug.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** debug.php 20 Dec 2004 15:59:42 -0000 1.9 --- debug.php 28 Dec 2004 18:28:35 -0000 1.10 *************** *** 70,75 **** // Attempt to contact the openFIRST Bugzilla Server ! $bugzilla = fopen("http://bugzilla.openfirst.org/openfirst/?module=$currentmodule&uri=" . urlencode($_SERVER["HTTP_HOST"] . $_SERVER["SCRIPT_NAME"]) ! . "&details=".urlencode($details)."&specifics=".urlencode($specifics)), "r"); if(! $bugzilla) { --- 70,78 ---- // Attempt to contact the openFIRST Bugzilla Server ! $bugzilla = fopen( "http://bugzilla.openfirst.org/openfirst/". ! "?module=$currentmodule". ! "&uri=" . urlencode($_SERVER["HTTP_HOST"] . $_SERVER["SCRIPT_NAME"]). ! "&details=".urlencode($details). ! "&specifics=".urlencode($specifics), "r"); if(! $bugzilla) { |