[Openfirst-cvscommit] base/config install.php,1.3,1.4
Brought to you by:
xtimg
From: <xt...@us...> - 2003-06-21 20:42:08
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1:/tmp/cvs-serv28922 Modified Files: install.php Log Message: Eliminate debugging messages Index: install.php =================================================================== RCS file: /cvsroot/openfirst/base/config/install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** install.php 21 Jun 2003 20:07:06 -0000 1.3 --- install.php 21 Jun 2003 20:42:04 -0000 1.4 *************** *** 77,82 **** echo("<br /> <input type='checkbox' name='$dir'>$sqlf - $dir</input>"); if($_POST[$dir] == "on") { - // This doesn't quite work. I'm not sure why. - echo getcwd(); $filename = "$file/setup/$fil"; $sf = fopen($filename, "r"); --- 77,80 ---- *************** *** 84,88 **** while($line = fgets($sf, 4096)) { if(substr($line, 0, 2) != "--" && substr($line, 0, 1) != "#" && strlen($line) > 0) { - echo $line; $q = mysql_query(trim($line)); } --- 82,85 ---- |