|
From: mdw c. <myd...@li...> - 2001-12-01 12:18:06
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/db
Modified Files:
mysql.php
Log Message:
connect instead of pconnect
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/db/mysql.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- mysql.php 2001/12/01 12:14:56 1.4
+++ mysql.php 2001/12/01 12:18:05 1.5
@@ -21,7 +21,7 @@
$this->connect_id=@mysql_connect();
}
else{
- $this->connect_id=@mysql_pconnect($host, $user, $password);
+ $this->connect_id=@mysql_connect($host, $user, $password);
}
if ($this->connect_id) {
|