X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=extlib%2FDB%2Fmysql.php;fp=extlib%2FDB%2Fmysql.php;h=21132d62df96857a5f23b95e682f91a8e5208915;hb=10f2cde0b1d75fa023b00400162cb525e8719514;hp=c672545205cc3a5c4259c98b02122cbdc064f114;hpb=35a9c65e4affb28286446337421366f3245ff8ad;p=quix0rs-gnu-social.git diff --git a/extlib/DB/mysql.php b/extlib/DB/mysql.php index c672545205..21132d62df 100644 --- a/extlib/DB/mysql.php +++ b/extlib/DB/mysql.php @@ -6,7 +6,7 @@ * The PEAR DB driver for PHP's mysql extension * for interacting with MySQL databases * - * PHP versions 4 and 5 + * PHP version 5 * * LICENSE: This source file is subject to version 3.0 of the PHP license * that is available through the world-wide-web at the following URI: @@ -20,7 +20,7 @@ * @author Daniel Convissor * @copyright 1997-2007 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 - * @version CVS: $Id: mysql.php,v 1.126 2007/09/21 13:32:52 aharvey Exp $ + * @version CVS: $Id$ * @link http://pear.php.net/package/DB */ @@ -41,7 +41,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.7.14RC1 + * @version Release: 1.8.2 * @link http://pear.php.net/package/DB */ class DB_mysql extends DB_common @@ -772,17 +772,6 @@ class DB_mysql extends DB_common return '`' . str_replace('`', '``', $str) . '`'; } - // }}} - // {{{ quote() - - /** - * @deprecated Deprecated in release 1.6.0 - */ - function quote($str) - { - return $this->quoteSmart($str); - } - // }}} // {{{ escapeSimple()