steinm Sun Sep 21 09:17:20 2003 EDT Modified files: /php-src/ext/dbase dbase.c Log: - fixed typo in error message Index: php-src/ext/dbase/dbase.c diff -u php-src/ext/dbase/dbase.c:1.68 php-src/ext/dbase/dbase.c:1.69 --- php-src/ext/dbase/dbase.c:1.68 Thu Aug 28 17:00:13 2003 +++ php-src/ext/dbase/dbase.c Sun Sep 21 09:17:20 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: dbase.c,v 1.68 2003/08/28 21:00:13 andrey Exp $ */ +/* $Id: dbase.c,v 1.69 2003/09/21 13:17:20 steinm Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -664,7 +664,7 @@ /* field type */ if (zend_hash_index_find(Z_ARRVAL_PP (field), 1, (void **)&value) == FAILURE) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "expected field type as sececond element of list in field %d", i); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "expected field type as second element of list in field %d", i); RETURN_FALSE; } convert_to_string_ex(value);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php