diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-10-01 23:49:43 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-10-01 23:49:43 +0200 |
commit | 12a352a0d4c1c2bbb59d10173acea2cb4e25501f (patch) | |
tree | ba5cb6c75f312c0ef76584ef5fbc079dbfd8934d /ratatoeskr | |
parent | c7e2a245d25b79c3042362638925569428e358eb (diff) | |
download | ratatoeskr-cms-hotfix.tar.gz ratatoeskr-cms-hotfix.tar.bz2 ratatoeskr-cms-hotfix.zip |
Fixed extract_meta.hotfix
Diffstat (limited to 'ratatoeskr')
-rw-r--r-- | ratatoeskr/sys/pluginpackage.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ratatoeskr/sys/pluginpackage.php b/ratatoeskr/sys/pluginpackage.php index cf667cc..863df71 100644 --- a/ratatoeskr/sys/pluginpackage.php +++ b/ratatoeskr/sys/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; } |