diff options
| -rw-r--r-- | ext/tidy/package.xml | 20 | ||||
| -rw-r--r-- | ext/tidy/tidy.c | 2 |
2 files changed, 6 insertions, 16 deletions
diff --git a/ext/tidy/package.xml b/ext/tidy/package.xml index b7f6e26d9b..266cc5d7c6 100644 --- a/ext/tidy/package.xml +++ b/ext/tidy/package.xml @@ -24,21 +24,11 @@ but also traverse the document tree using the Zend Engine 2 OO semantics. </description> <license>PHP</license> <release> - <state>beta</state> - <version>0.7</version> - <date>2003-05-07</date> + <state>stable</state> + <version>1.0</version> + <date>2003-11-13</date> <notes> - The tidy extension now works in PHP4 for most tasks, only the parsing - abilities of the extension are not available (ZE2 only). The OO portions - of the extension have been completely re-written and are now stable and - work quite well. - - The way all tidy functions work has also changed slightly. Instead of - calling tidy_create() to create a tidy resource, the tidy resource is - stored internally and used as needed. Thus, all tidy functions no longer - need the initial $tidy parameter to function. If you'd like to reset - tidy to an initial state, you can still call tidy_create(). This change - was done to make tidy faster per-request. + Fixed a few PHP5-specific bugs when working with node objects. </notes> <configureoptions> <configureoption name="with-tidy" default="autodetect" prompt="Tidy library installation dir?"/> @@ -65,7 +55,7 @@ but also traverse the document tree using the Zend Engine 2 OO semantics. <file role="test" name="tests/007.phpt"/> </filelist> <deps> - <dep type="php" rel="ge">5.0.0</dep> + <dep type="php" rel="ge">4.3.0</dep> </deps> </release> </package> diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index f584cbd673..c67e29c271 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -146,7 +146,7 @@ zend_module_entry tidy_module_entry = { NULL, PHP_MINFO(tidy), #if ZEND_MODULE_API_NO >= 20010901 - "0.7b", + "1.0", #endif STANDARD_MODULE_PROPERTIES }; |
