commit a2b6b9952ef823be9bee9b319a97946283953cf8
parent 24ce2b9895b6b74a9e3f8d30bb896d46735e750c
Author: markseu <mark2011@mayberg.se>
Date: Mon, 23 Dec 2019 20:38:42 +0100
Removed about page from default installation
Diffstat:
3 files changed, 1 insertion(+), 15 deletions(-)
diff --git a/content/9-about/page.md b/content/9-about/page.md
@@ -1,6 +0,0 @@
----
-Title: About
----
-For people who make websites. [edit - Log in].
-
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna pizza. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-\ No newline at end of file
diff --git a/content/shared/footer.md b/content/shared/footer.md
@@ -1,5 +0,0 @@
----
-Title: Footer
-Status: hidden
----
-[Made with Datenstrom Yellow](https://datenstrom.se/yellow/)
diff --git a/system/extensions/install.php b/system/extensions/install.php
@@ -4,7 +4,7 @@
// This file may be used and distributed under the terms of the public license.
class YellowInstall {
- const VERSION = "0.8.12";
+ const VERSION = "0.8.13";
const TYPE = "feature";
const PRIORITY = "1";
public $yellow; //access to API
@@ -64,8 +64,6 @@ class YellowInstall {
if ($status=="install") $status = $this->updateExtension($extension)==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateUser($email, $password, $author, $language)==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "Home", "/")==200 ? "ok" : "error";
- if ($status=="ok") $status = $this->updateContent($language, "About", "/about/")==200 ? "ok" : "error";
- if ($status=="ok") $status = $this->updateContent($language, "Footer", "/shared/footer")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "Default", "/shared/page-new-default")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "Blog", "/shared/page-new-blog")==200 ? "ok" : "error";
if ($status=="ok") $status = $this->updateContent($language, "Wiki", "/shared/page-new-wiki")==200 ? "ok" : "error";