Add noreferrer to footer URI

This commit is contained in:
Lukas Reschke 2015-02-16 13:37:54 +01:00
parent 4172ba48d4
commit 8791f1992e
1 changed files with 2 additions and 1 deletions

View File

@ -212,7 +212,8 @@ 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"' .
' rel="noreferrer">' .$this->getEntity() . '</a>'.
' ' . $this->getSlogan();
}