Update of /cvsroot/mantisbt/mantisbt/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31685
Modified Files:
check.php
Log Message:
Drop reference to obsolete $g_port config variable
Index: check.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/admin/check.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- check.php 22 Sep 2004 17:49:18 -0000 1.14
+++ check.php 12 Oct 2004 20:34:24 -0000 1.15
@@ -151,10 +151,10 @@
<!-- Test DATABASE part 1 -->
<tr>
<td bgcolor="#ffffff">
- Opening connection to database on host [<?php echo config_get(
'hostname' ) . ':' . config_get( 'port' ) ?>] with username [<?php echo
config_get( 'db_username' ) ?>]
+ Opening connection to database on host [<?php echo config_get(
'hostname' ) ?>] with username [<?php echo config_get( 'db_username' ) ?>]
</td>
<?php
- $result = @db_connect( config_get( 'hostname' ), config_get(
'db_username' ), config_get( 'db_password' ), config_get( 'port' ) );
+ $result = @db_connect( config_get( 'hostname' ), config_get(
'db_username' ), config_get( 'db_password' ) );
if ( false == $result ) {
print_test_result( BAD );
} else {
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
|