diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-11-10 01:08:52 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-11-10 01:08:52 +0000 |
commit | d675fcb888cecf648133d4a6d2a93727a3af815d (patch) | |
tree | 78854da440e1698aecdea3f130e24cca0883f47c | |
parent | e16db0f4548d364efc447f824d26ef4bb2d988fd (diff) | |
download | php-git-d675fcb888cecf648133d4a6d2a93727a3af815d.tar.gz |
MFB: Fixed pecl bug #9179 (phpversion("filter") shows wrong version).
-rw-r--r-- | ext/filter/filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/filter/filter.c b/ext/filter/filter.c index f6bfc7329e..344353b0bc 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -104,7 +104,7 @@ zend_module_entry filter_module_entry = { NULL, PHP_RSHUTDOWN(filter), PHP_MINFO(filter), - "0.9.5-dev", + "0.11.0", STANDARD_MODULE_PROPERTIES }; /* }}} */ |