sean Sun Feb 4 21:41:57 2007 UTC
Modified files: /phpdoc/scripts functable.php Log: remove superfluous insensitivity -- (thanks colder) http://cvs.php.net/viewvc.cgi/phpdoc/scripts/functable.php?r1=1.8&r2=1.9&diff_format=u Index: phpdoc/scripts/functable.php diff -u phpdoc/scripts/functable.php:1.8 phpdoc/scripts/functable.php:1.9 --- phpdoc/scripts/functable.php:1.8 Sun Feb 4 19:31:45 2007 +++ phpdoc/scripts/functable.php Sun Feb 4 21:41:57 2007 @@ -15,7 +15,7 @@ +----------------------------------------------------------------------+ | Authors: Sean Coates <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ -$Id: functable.php,v 1.8 2007/02/04 19:31:45 sean Exp $ +$Id: functable.php,v 1.9 2007/02/04 21:41:57 sean Exp $ */ // direct the output of this file into phpdoc/phpbook/phpbook-xsl/version.xml @@ -122,7 +122,7 @@ $XE = @new SimpleXMLElement("http://pecl.php.net/rest/r/$package/allreleases.xml", NULL, true); //@ sucks, but the XML doesn't like me foreach ($XE as $Element) { if ($Element->getName() == 'r') { - if (preg_match('/[0-9]+\.[0-9]+(\.[0-9]+)?$/i', (string) $Element->v)) { + if (preg_match('/[0-9]+\.[0-9]+(\.[0-9]+)?$/', (string) $Element->v)) { $releases[] = (string) $Element->v; } }