From 8561d0dfca8fdb3826f6a301ee9c617bb11821fc Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Tue, 5 Aug 2014 13:18:38 +0200
Subject: [PATCH] remove escaping because it's unneeded

---
 lib/private/defaults.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/private/defaults.php b/lib/private/defaults.php
index bb4dda01fa..dfd114cd2f 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();
 		}
 
-- 
GitLab