From c85d8916a3626ac641af476fe87e51316f24907e Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Wed, 18 Jan 2023 08:38:32 +0100 Subject: [PATCH] =?UTF-8?q?Changed=20=E2=80=9CBack=20to=20search=E2=80=9D?= =?UTF-8?q?=20to=20=E2=80=9CGo=20to=20search=E2=80=9D;=20minor=20changes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/site/instances.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/site/instances.php b/web/site/instances.php index 58a6d10..ea18471 100644 --- a/web/site/instances.php +++ b/web/site/instances.php @@ -67,7 +67,7 @@ echo('
'.N); if ($single) { - echo('

← '._('Back to search').'

'.N); + echo('

↑ '._('Go to search').'

'.N); $p=1; $que='SELECT * FROM Instances WHERE ID='.$_GET['id']; } else { @@ -391,7 +391,7 @@ mysqli_data_seek($res,$if); while ($if<$il && $row=mysqli_fetch_assoc($res)) { $if++; $out='
'.hspech($row['URI']).''; - if (!$single) $out.=' ('.$if.'/'.$itot.')'; + if (!$single) $out.=' ('.$if.'/'.$itot.')'; $out.='
'.N.'
'.N; $qbt=microtime(true); $rres=tquery('SELECT CONCAT(Languages.Name'.$dlanguc.'," (",Languages.Code,")") AS Lang FROM InstOurLangs LEFT JOIN Languages ON Languages.ID=InstOurLangs.OurLangID WHERE InstOurLangs.InstID='.$row['ID'].' ORDER BY InstOurLangs.Pos ASC',__LINE__);