Commit: e5b3c0b52395eed3b7f5744ad271fcf405b48b7c
Author: Anatol Belski <[email protected]> Tue, 22 Oct 2013 09:42:09 +0200
Parents: 80d29dffc8e703d51b9eac12128982275e32cc4b
Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=e5b3c0b52395eed3b7f5744ad271fcf405b48b7c
Log:
fixed bug in license file recognition
Changed paths:
M client/include/PeclExt.php
Diff:
diff --git a/client/include/PeclExt.php b/client/include/PeclExt.php
index cfb488c..6026d3d 100644
--- a/client/include/PeclExt.php
+++ b/client/include/PeclExt.php
@@ -81,9 +81,9 @@ class PeclExt
$this->lic_fnames = $base;
foreach ($base as $nm) {
- $lic_fnames[] = "$nm*";
- $lic_fnames[] = strtolower($nm) . "*";
- $lic_fnames[] = ucfirst(strtolower($nm)) . "*";
+ $this->lic_fnames[] = "$nm*";
+ $this->lic_fnames[] = strtolower($nm) . "*";
+ $this->lic_fnames[] = ucfirst(strtolower($nm)) . "*";
}
}