From 7782a4b42523b315d175a35587ae9a44334382fc Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Wed, 28 Jan 2004 22:51:54 +0000 Subject: removed experimental status fixed bug in mysqli_data_seek (thx to Andrey "Effendi" Hristov) various prototype fixes moved some methods to properties which are part of mysql struct added function mysqli_get_server_version --- ext/mysqli/mysqli_report.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ext/mysqli/mysqli_report.c') diff --git a/ext/mysqli/mysqli_report.c b/ext/mysqli/mysqli_report.c index 88bc573512..fd3d66d424 100644 --- a/ext/mysqli/mysqli_report.c +++ b/ext/mysqli/mysqli_report.c @@ -33,18 +33,11 @@ PHP_FUNCTION(mysqli_report) { int flags; - if (MyG(report_mode)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Report level already set."); - RETURN_FALSE; - } if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &flags) == FAILURE) { return; } - if (!flags) { - RETURN_FALSE; - } MyG(report_mode) = flags; RETURN_TRUE; -- cgit v1.2.1