summaryrefslogtreecommitdiff
path: root/ext/mysql
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2004-01-27 23:14:42 +0000
committerAndrey Hristov <andrey@php.net>2004-01-27 23:14:42 +0000
commit463f510796858af8fda862320a0a1f9f37fc0ec4 (patch)
treef465657a20de9db8e6b1428de5c557552f01b48f /ext/mysql
parente1ae61802baa651cf4398c13d74b51cb58f57774 (diff)
downloadphp-git-463f510796858af8fda862320a0a1f9f37fc0ec4.tar.gz
message about that mysql_list_tables() is deprecated
Diffstat (limited to 'ext/mysql')
-rw-r--r--ext/mysql/php_mysql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c
index 9626b08ed3..8a46e8e006 100644
--- a/ext/mysql/php_mysql.c
+++ b/ext/mysql/php_mysql.c
@@ -1445,7 +1445,7 @@ PHP_FUNCTION(mysql_list_tables)
WRONG_PARAM_COUNT;
break;
}
-
+ php_error_docref(NULL TSRMLS_CC, E_STRICT, "mysql_list_tables() is deprecated");
ZEND_FETCH_RESOURCE2(mysql, php_mysql_conn *, mysql_link, id, "MySQL-Link", le_link, le_plink);
convert_to_string_ex(db);