From 2975b6c577c3e44dfc9fabfb13c168ada1aeff24 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sun, 28 Dec 2014 10:28:07 +0000 Subject: [PATCH] Added placeholder move action --- core.php | 12 ++++++++++++ index.php | 16 +++++++++++++--- settings.fragment.php | 4 +--- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/core.php b/core.php index 486f4aa..b11342a 100644 --- a/core.php +++ b/core.php @@ -544,6 +544,18 @@ switch($_GET["action"]) exit(renderpage("Deleting $page - $sitename", "

$page has been deleted. Go back to the main page.

")); break; + /* + * __ __ + * | \/ | _____ _____ + * | |\/| |/ _ \ \ / / _ \ + * | | | | (_) \ V / __/ + * |_| |_|\___/ \_/ \___| + * %move% + */ + case "move": + exit(renderpage("Moving $page", "

Coming soon...

")); + break; + /* * _ _ * | |__ ___| |_ __ diff --git a/index.php b/index.php index fabed4b..7685844 100755 --- a/index.php +++ b/index.php @@ -33,12 +33,10 @@ $maxpagesize = 135000; //135,000 characters, or 50 pages //whether users who aren't logged in are allowed to edit $anonedits = false; -//the name of the page that will act as the home pae for the wiki. This page will be served if the user didn't specify a page. +//the name of the page that will act as the home page for the wiki. This page will be served if the user didn't specify a page. $defaultpage = "Main Page"; //usernames and passwords - passwords should be hashed with sha256 -//even though there is an account with the name admin here it doesn't actually get any special privileges, so feel free to change / remove it - this will help to stop spambots -//the same goes for the account with the name user $users = [ "admin" => "5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8", //password "user" => "873ac9ffea4dd04fa719e8920cd6938f0c23cd678af330939cff53c3d2855f34" //cheese @@ -659,6 +657,18 @@ switch($_GET["action"]) exit(renderpage("Deleting $page - $sitename", "

$page has been deleted. Go back to the main page.

")); break; + /* + * __ __ + * | \/ | _____ _____ + * | |\/| |/ _ \ \ / / _ \ + * | | | | (_) \ V / __/ + * |_| |_|\___/ \_/ \___| + * %move% + */ + case "move": + exit(renderpage("Moving $page", "

Coming soon...

")); + break; + /* * _ _ * | |__ ___| |_ __ diff --git a/settings.fragment.php b/settings.fragment.php index d4ee0cc..6cb15ef 100644 --- a/settings.fragment.php +++ b/settings.fragment.php @@ -30,12 +30,10 @@ $maxpagesize = 135000; //135,000 characters, or 50 pages //whether users who aren't logged in are allowed to edit $anonedits = false; -//the name of the page that will act as the home pae for the wiki. This page will be served if the user didn't specify a page. +//the name of the page that will act as the home page for the wiki. This page will be served if the user didn't specify a page. $defaultpage = "Main Page"; //usernames and passwords - passwords should be hashed with sha256 -//even though there is an account with the name admin here it doesn't actually get any special privileges, so feel free to change / remove it - this will help to stop spambots -//the same goes for the account with the name user $users = [ "admin" => "5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8", //password "user" => "873ac9ffea4dd04fa719e8920cd6938f0c23cd678af330939cff53c3d2855f34" //cheese