Remove the dash in the footer

I would like to remove the dash between the default entity and the slogan.
Which file I have to edit or where can I find an introduction?

Many thanks in advance!

Hi Enhob.

Access /var/www/owncloud//lib/private/legacy/defaults.php Then look for this line

public function getShortFooter() {
if ($this->themeExist(‘getShortFooter’)) {
$footer = $this->theme->getShortFooter();
} else {
$footer = ‘’ . $this->getEntity() . ‘’;
$footer .= ’ & ndash; ’ . $this->getSlogan();

And Just Remove $ndash; here at "$footer .= ’ & ndash; ’ . $this->getSlogan();"
It should be look like this.

$footer .= ’ ’ . $this->getSlogan();

2 Likes