diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 13:18:38 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 13:18:38 +0200 |
commit | 8561d0dfca8fdb3826f6a301ee9c617bb11821fc (patch) | |
tree | 486190cdcbee0b6117cfc65d8af251826c531fce /lib/private/defaults.php | |
parent | 7b222c4ab581dcd56176fc86c52155a9f0e67545 (diff) | |
download | nextcloud-server-8561d0dfca8fdb3826f6a301ee9c617bb11821fc.tar.gz nextcloud-server-8561d0dfca8fdb3826f6a301ee9c617bb11821fc.zip |
remove escaping because it's unneeded
Diffstat (limited to 'lib/private/defaults.php')
-rw-r--r-- | lib/private/defaults.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/defaults.php b/lib/private/defaults.php index bb4dda01fa2..dfd114cd2fe 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -186,7 +186,7 @@ class OC_Defaults { if ($this->themeExist('getShortFooter')) { $footer = $this->theme->getShortFooter(); } else { - $footer = '<a href=\"'. $this->getBaseUrl() . '\" target=\"_blank\">' .$this->getEntity() . '</a>'. + $footer = '<a href="'. $this->getBaseUrl() . '" target="_blank">' .$this->getEntity() . '</a>'. ' – ' . $this->getSlogan(); } |