Commit: 3fd55f0956bf740395d780aad973ee20edac6561 Author: Anatol Belski <[email protected]> Mon, 9 Sep 2013 16:26:33 +0200 Parents: 1bab72f88cfae9b16c5199ff69df9f6197d6ef67 Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=3fd55f0956bf740395d780aad973ee20edac6561 Log: package name should be always lower case Changed paths: M client/include/PeclExt.php Diff: diff --git a/client/include/PeclExt.php b/client/include/PeclExt.php index a2fabd0..06df224 100644 --- a/client/include/PeclExt.php +++ b/client/include/PeclExt.php @@ -67,6 +67,9 @@ class PeclExt } } + $this->name = strtolower($this->name); + $this->version = strtolower($this->version); + } public function getPackageName() -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
