diff options
-rwxr-xr-x | create-package.sh | 6 | ||||
-rw-r--r-- | ratatoeskr/setup/setup.php | 4 | ||||
-rw-r--r-- | ratatoeskr/sys/pluginpackage.php | 18 |
3 files changed, 14 insertions, 14 deletions
diff --git a/create-package.sh b/create-package.sh index 7aec2fd..a2efb4f 100755 --- a/create-package.sh +++ b/create-package.sh @@ -18,11 +18,11 @@ unzip php-markdown-*.zip mv PHP\ Markdown\ */markdown.php . rm -rf PHP\ Markdown\ * rm php-markdown-*.zip -wget http://sourceforge.net/projects/kses/files/latest/download -unzip kses-*.zip +wget -O kses.zip http://sourceforge.net/projects/kses/files/kses/0.2.2/kses-0.2.2.zip/download?use_mirror=optimate +unzip kses.zip mv kses-*/kses.php . rm -rf kses-* -rm kses-*.zip +rm kses.zip wget http://code.jquery.com/jquery.min.js cd ../.. rm session_doctor.php 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; } |