List:Commits« Previous MessageNext Message »
From:ahristov Date:March 16 2007 9:48am
Subject:PHP mysqlnd svn commit: r170 - trunk/ext/mysqli/mysqlnd
View as plain text  
Author: ahristov
Date: 2007-03-16 10:48:32 +0100 (Fri, 16 Mar 2007)
New Revision: 170

Modified:
   trunk/ext/mysqli/mysqlnd/mysqlnd.c
Log:
Lower to E_STRICT, it's about good and strict code.


Modified: trunk/ext/mysqli/mysqlnd/mysqlnd.c
===================================================================
--- trunk/ext/mysqli/mysqlnd/mysqlnd.c	2007-03-16 09:45:15 UTC (rev 169)
+++ trunk/ext/mysqli/mysqlnd/mysqlnd.c	2007-03-16 09:48:32 UTC (rev 170)
@@ -2172,7 +2172,7 @@
 	enum_func_status ret;
 
 	if (conn->state != CONN_NEXT_RESULT_PENDING) {
-		php_error_docref(NULL TSRMLS_CC, E_NOTICE, "There is no next result set. "
+		php_error_docref(NULL TSRMLS_CC, E_STRICT, "There is no next result set. "
 						"Please, call mysqli_more_results()/mysqli::more_results() to check "
 						"whether to call this function/method");
 		return FAIL;

Thread
PHP mysqlnd svn commit: r170 - trunk/ext/mysqli/mysqlndahristov16 Mar