diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-10-02 00:28:19 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-10-02 00:28:19 +0200 |
commit | cf4c8c5ec70df1d4e4e9cb602143f08ec64b18bf (patch) | |
tree | 7f6d2e9a2dd99c130e742eb607316e69ec4f8c64 | |
parent | 9f4b3867250cac6fd75cc3e410fbff58f817cf8f (diff) | |
download | r7r-plugin-packer-cf4c8c5ec70df1d4e4e9cb602143f08ec64b18bf.tar.gz r7r-plugin-packer-cf4c8c5ec70df1d4e4e9cb602143f08ec64b18bf.tar.bz2 r7r-plugin-packer-cf4c8c5ec70df1d4e4e9cb602143f08ec64b18bf.zip |
Patched pluginpackage.php
-rw-r--r-- | pluginpackage.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pluginpackage.php b/pluginpackage.php index cf667cc..863df71 100644 --- a/pluginpackage.php +++ b/pluginpackage.php @@ -236,15 +236,15 @@ class PluginPackage { $meta = new PluginPackageMeta(); - $meta->name = $this>name; - $meta->author = $this>author; - $meta->versiontext = $this>versiontext; - $meta->versioncount = $this>versioncount; - $meta->api = $this>api; - $meta->short_description = $this>short_description; - $meta->updatepath = $this>updatepath; - $meta->web = $this>web; - $meta->license = $this>license; + $meta->name = $this->name; + $meta->author = $this->author; + $meta->versiontext = $this->versiontext; + $meta->versioncount = $this->versioncount; + $meta->api = $this->api; + $meta->short_description = $this->short_description; + $meta->updatepath = $this->updatepath; + $meta->web = $this->web; + $meta->license = $this->license; return $meta; } |