diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-11 14:20:25 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-11 14:20:25 +0200 |
commit | 32ccd6621465457fe95c77b4be9f9e0b3ec819ba (patch) | |
tree | 067783c9edffe8b3f0e9f4ec0e5312da4b430b65 /themes | |
parent | c16fd29f2924cd9fbd46b4d3f2e4505a55a3b57d (diff) | |
download | nextcloud-server-32ccd6621465457fe95c77b4be9f9e0b3ec819ba.tar.gz nextcloud-server-32ccd6621465457fe95c77b4be9f9e0b3ec819ba.zip |
Revert "make knowledge base url configurable"
This reverts commit 8fb89056bd2f99b1df7dc7a3970fc293272c8ab6.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/example/defaults.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php index 21d80416e12..0dd0d46bd9c 100644 --- a/themes/example/defaults.php +++ b/themes/example/defaults.php @@ -28,7 +28,6 @@ class OC_Theme { private $themeSyncClientUrl; private $themeSlogan; private $themeMailHeaderColor; - private $themeKnowledgeBaseUrl; /* put your custom text in these variables */ function __construct() { @@ -40,7 +39,6 @@ class OC_Theme { $this->themeSyncClientUrl = 'https://owncloud.org/install'; $this->themeSlogan = 'Your custom cloud, personalized for you!'; $this->themeMailHeaderColor = '#745bca'; - $this->themeKnowledgeBaseUrl = 'https://doc.owncloud.org'; } /* nothing after this needs to be adjusted */ @@ -94,8 +92,4 @@ class OC_Theme { return $this->themeMailHeaderColor; } - public function getKnowledgeBaseUrl() { - return $this->themeKnowledgeBaseUrl; - } - } |