]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - extlib/DB/msql.php
Merge branch 'notice_id-xml' into 'nightly'
[quix0rs-gnu-social.git] / extlib / DB / msql.php
index c303bb9067d097de75c15f9cc13833c7380006ca..adcedf7a077a0122624227081c020b73a932b978 100644 (file)
@@ -47,7 +47,7 @@ require_once 'DB/common.php';
  * @author     Daniel Convissor <danielc@php.net>
  * @copyright  1997-2007 The PHP Group
  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0
- * @version    Release: 1.8.2
+ * @version    Release: 1.9.2
  * @link       http://pear.php.net/package/DB
  * @since      Class not functional until Release 1.7.0
  */
@@ -126,13 +126,13 @@ class DB_msql extends DB_common
     // {{{ constructor
 
     /**
-     * This constructor calls <kbd>$this->DB_common()</kbd>
+     * This constructor calls <kbd>parent::__construct()</kbd>
      *
      * @return void
      */
-    function DB_msql()
+    function __construct()
     {
-        $this->DB_common();
+        parent::__construct();
     }
 
     // }}}