remove escaping because it's unneeded

This commit is contained in:
Morris Jobke 2014-08-05 13:18:38 +02:00
parent 7b222c4ab5
commit 8561d0dfca
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}