summaryrefslogtreecommitdiffstats
path: root/lib/private/defaults.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-08-05 13:18:38 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-08-05 13:18:38 +0200
commit8561d0dfca8fdb3826f6a301ee9c617bb11821fc (patch)
tree486190cdcbee0b6117cfc65d8af251826c531fce /lib/private/defaults.php
parent7b222c4ab581dcd56176fc86c52155a9f0e67545 (diff)
downloadnextcloud-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.php2
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();
}