felipe Sun, 13 Mar 2011 14:57:19 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=309174
Log: - Fix infile return on duplicated key (related to bug #54242) Bug: http://bugs.php.net/54242 (Closed) dba_insert returns true if key already exists Changed paths: U php/php-src/trunk/ext/dba/dba_inifile.c Modified: php/php-src/trunk/ext/dba/dba_inifile.c =================================================================== --- php/php-src/trunk/ext/dba/dba_inifile.c 2011-03-13 14:29:24 UTC (rev 309173) +++ php/php-src/trunk/ext/dba/dba_inifile.c 2011-03-13 14:57:19 UTC (rev 309174) @@ -102,7 +102,7 @@ return SUCCESS; case 1: php_error_docref1(NULL TSRMLS_CC, key, E_WARNING, "Key already exists"); - return SUCCESS; + return FAILURE; } }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php