From 53e6d5fde32a917718a0658fb95f366dc7dfc248 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Sun, 26 Apr 2020 15:41:48 +0200 Subject: user bookmarks use new object + shortcuts visible in backtopbar --- app/class/Opt.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/class/Opt.php') diff --git a/app/class/Opt.php b/app/class/Opt.php index df3cb50..24c7f90 100644 --- a/app/class/Opt.php +++ b/app/class/Opt.php @@ -165,7 +165,7 @@ class Opt extends Item $authorstring = ""; foreach ($authorlist as $author) { $href = $this->getfilteradress(['authorfilter' => [$author]]); - $authorstring .= '' . $author . '\n'; + $authorstring .= "$author\n"; } return $authorstring; } @@ -173,7 +173,7 @@ class Opt extends Item public function securelink(int $level, string $secure) { $href = $this->getfilteradress(['secure' => $level]); - return '' . $secure . '\n'; + return "$secure\n"; } public function linktolink(array $linktolist) @@ -181,7 +181,7 @@ class Opt extends Item $linktostring = ""; foreach ($linktolist as $linkto) { $href = $this->getfilteradress(['linkto' => $linkto]); - $linktostring .= '' . $linkto . '\n'; + $linktostring .= "$linkto\n"; } return $linktostring; } -- cgit v1.2.3