]> source.dussan.org Git - nextcloud-server.git/commitdiff
Backport #26236 to stable9 (#26237)
authorRealRancor <RealRancor@users.noreply.github.com>
Wed, 28 Sep 2016 07:36:54 +0000 (09:36 +0200)
committerThomas Müller <DeepDiver1975@users.noreply.github.com>
Wed, 28 Sep 2016 07:36:54 +0000 (09:36 +0200)
themes/example/defaults.php

index 3580dc137fb2e87516a4c600e61abaa2456ac2df..1bed4163bf19b17a428c8ea75a2931c723d00166 100644 (file)
@@ -121,7 +121,7 @@ class OC_Theme {
         * @return string short footer
         */
        public function getShortFooter() {
-               $footer = '© 2015 <a href="'.$this->getBaseUrl().'" target="_blank\">'.$this->getEntity().'</a>'.
+               $footer = '© 2016 <a href="'.$this->getBaseUrl().'" target="_blank\">'.$this->getEntity().'</a>'.
                        '<br/>' . $this->getSlogan();
 
                return $footer;
@@ -132,14 +132,14 @@ class OC_Theme {
         * @return string long footer
         */
        public function getLongFooter() {
-               $footer = '© 2015 <a href="'.$this->getBaseUrl().'" target="_blank\">'.$this->getEntity().'</a>'.
+               $footer = '© 2016 <a href="'.$this->getBaseUrl().'" target="_blank\">'.$this->getEntity().'</a>'.
                        '<br/>' . $this->getSlogan();
 
                return $footer;
        }
 
        public function buildDocLinkToKey($key) {
-               return $this->getDocBaseUrl() . '/server/8.0/go.php?to=' . $key;
+               return $this->getDocBaseUrl() . '/server/9.0/go.php?to=' . $key;
        }