|
From: Ulf E. <ulf...@us...> - 2005-08-23 21:26:26
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26361/phpbt Modified Files: install.php Log Message: Use '#' as comment char in schemas/*.in Index: install.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/install.php,v retrieving revision 1.50 retrieving revision 1.51 diff -u -r1.50 -r1.51 --- install.php 22 Aug 2005 20:30:56 -0000 1.50 +++ install.php 23 Aug 2005 21:26:14 -0000 1.51 @@ -215,6 +215,7 @@ $do_query = ''; foreach ($queries as $query) { // First, collect multi-line queries into one line, then run the query + if ($query{0} == '#') continue; $do_query .= chop($query); if (empty($do_query) or substr($do_query, -1) != ';') continue; if ($_POST['db_type'] == 'oci8' ) { |