X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=extlib%2FDB%2Fmsql.php;h=adcedf7a077a0122624227081c020b73a932b978;hb=924bcd93e5692288f976dd49f15ea3e15c080acc;hp=c303bb9067d097de75c15f9cc13833c7380006ca;hpb=dc0b62f63693fafb6400a2d2ed4a0ca51eb3fc6b;p=quix0rs-gnu-social.git diff --git a/extlib/DB/msql.php b/extlib/DB/msql.php index c303bb9067..adcedf7a07 100644 --- a/extlib/DB/msql.php +++ b/extlib/DB/msql.php @@ -47,7 +47,7 @@ require_once 'DB/common.php'; * @author Daniel Convissor * @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 $this->DB_common() + * This constructor calls parent::__construct() * * @return void */ - function DB_msql() + function __construct() { - $this->DB_common(); + parent::__construct(); } // }}}