[Openfirst-cvscommit] base/config first.php,1.35,1.36
Brought to you by:
xtimg
From: Greg I. <i-...@us...> - 2004-04-11 16:32:32
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8832/config Modified Files: first.php Log Message: Fixed typos that prevented the script from running Index: first.php =================================================================== RCS file: /cvsroot/openfirst/base/config/first.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** first.php 9 Apr 2004 20:55:04 -0000 1.35 --- first.php 11 Apr 2004 16:18:52 -0000 1.36 *************** *** 80,84 **** */ \$dbasetype = \"" . $_POST["dbasetype"] . "\"; ! \$peardb = \"" . $_POST["peardb"] . "\"; \$ostype = '" . $_POST["ostype"] . "'; if (\$ostype == \"windows\") { --- 80,84 ---- */ \$dbasetype = \"" . $_POST["dbasetype"] . "\"; ! \$peardb = " . $_POST["peardb"] . "; \$ostype = '" . $_POST["ostype"] . "'; if (\$ostype == \"windows\") { *************** *** 173,177 **** // Declare important variables so that headers can pick them up and preview them ! \$adminnav = str_replace(\"\\\$basepath\", \$basepath, \$module->adminnavigation) . " <a href='http://bugzilla.openfirst.org'>Report Bug</a>"; \$subnav = str_replace(\"\\\$basepath\", \$basepath, \$module->modulenavigation); --- 173,177 ---- // Declare important variables so that headers can pick them up and preview them ! \$adminnav = str_replace(\"\\\$basepath\", \$basepath, \$module->adminnavigation) . \" <a href='http://bugzilla.openfirst.org'>Report Bug</a>\"; \$subnav = str_replace(\"\\\$basepath\", \$basepath, \$module->modulenavigation); *************** *** 276,281 **** <option value="odbc">ODBC</option> </select> ! ! <?php } else { ?> <input type='hidden' name='peardb' value='true'> <select name="dbasetype"> --- 276,281 ---- <option value="odbc">ODBC</option> </select> ! ! <?php } else { ?> <input type='hidden' name='peardb' value='true'> <select name="dbasetype"> *************** *** 294,298 **** <option value="sybase">Sybase (through PEAR DB)</option> </select> ! <?php } ?> <tr> <td>Title of Website</td> --- 294,298 ---- <option value="sybase">Sybase (through PEAR DB)</option> </select> ! <?php } ?> <tr> <td>Title of Website</td> |