diff options
Diffstat (limited to 'ratatoeskr')
-rw-r--r-- | ratatoeskr/setup/setup.php | 4 | ||||
-rw-r--r-- | ratatoeskr/sys/pluginpackage.php | 18 |
2 files changed, 11 insertions, 11 deletions
diff --git a/ratatoeskr/setup/setup.php b/ratatoeskr/setup/setup.php index 86478ed..32727e6 100644 --- a/ratatoeskr/setup/setup.php +++ b/ratatoeskr/setup/setup.php @@ -231,8 +231,8 @@ STYLE; try { - Repository::create("http://repo-community.ratatoeskr-cms.net/"); - Repository::create("http://repo-official.ratatoeskr-cms.net/"); + Repository::create("http://r7r-repo-community.kch42.net/"); + Repository::create("http://r7r-repo-official.kch42.net/"); } catch(RepositoryUnreachableOrInvalid $e) { 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; } |