sniper Thu Feb 26 08:22:11 2004 EDT Modified files: /php-src/ext/tidy tidy.c Log: Fix typo http://cvs.php.net/diff.php/php-src/ext/tidy/tidy.c?r1=1.40&r2=1.41&ty=u Index: php-src/ext/tidy/tidy.c diff -u php-src/ext/tidy/tidy.c:1.40 php-src/ext/tidy/tidy.c:1.41 --- php-src/ext/tidy/tidy.c:1.40 Sun Feb 22 19:59:29 2004 +++ php-src/ext/tidy/tidy.c Thu Feb 26 08:22:11 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: tidy.c,v 1.40 2004/02/23 00:59:29 sniper Exp $ */ +/* $Id: tidy.c,v 1.41 2004/02/26 13:22:11 sniper Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -34,8 +34,8 @@ #include "Zend/zend_exceptions.h" #include "Zend/zend_object_handlers.h" -#include "tidy/tidy.h" -#include "tidy/buffio.h" +#include "tidy.h" +#include "buffio.h" #define PHP_TIDY_MODULE_VERSION "2.0-dev" @@ -948,7 +948,7 @@ php_info_print_table_start(); php_info_print_table_header(2, "Tidy support", "enabled"); php_info_print_table_row(2, "libTidy Release", (char *)tidyReleaseDate()); - php_info_print_table_row(2, "Extension Version", PHP_TIDY_MODULE_VERSION " ($Id: tidy.c,v 1.40 2004/02/23 00:59:29 sniper Exp $)"); + php_info_print_table_row(2, "Extension Version", PHP_TIDY_MODULE_VERSION " ($Id: tidy.c,v 1.41 2004/02/26 13:22:11 sniper Exp $)"); php_info_print_table_end(); DISPLAY_INI_ENTRIES();
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php