Date: 10/30/99
- Next message: rlynch <email protected>: "[PHP-DEV] Bug #2642: OpenLink odbc_exec() segfaults"
- Previous message: Juan Pablo Letelier: "Re: [PHP-DEV] Email from HTML form + gifs"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
rasmus Sat Oct 30 20:24:09 1999 EDT
Modified files:
/php3/functions basic_functions.c
Log:
Fix bug in function_exists()
Index: php3/functions/basic_functions.c
diff -u php3/functions/basic_functions.c:1.280 php3/functions/basic_functions.c:1.281
--- php3/functions/basic_functions.c:1.280 Thu Oct 7 19:00:44 1999
+++ php3/functions/basic_functions.c Sat Oct 30 20:24:08 1999
@@ -28,7 +28,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: basic_functions.c,v 1.280 1999/10/07 23:00:44 jah Exp $ */
+/* $Id: basic_functions.c,v 1.281 1999/10/31 00:24:08 rasmus Exp $ */
#ifdef THREAD_SAFE
#include "tls.h"
#endif
@@ -2101,6 +2101,7 @@
WRONG_PARAM_COUNT;
}
+ convert_to_string(fname);
lcname = estrdup(fname->value.str.val);
php3_str_tolower(lcname, fname->value.str.len);
if (_php3_hash_find(&GLOBAL(function_table), lcname,
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: rlynch <email protected>: "[PHP-DEV] Bug #2642: OpenLink odbc_exec() segfaults"
- Previous message: Juan Pablo Letelier: "Re: [PHP-DEV] Email from HTML form + gifs"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

