From a5b18b8ab99c9d18432c411ae55451d6dafa017c Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Wed, 17 Jan 2018 21:02:15 -0700 Subject: [PATCH] Fix URLs --- apps/sync_mobile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/sync_mobile.php b/apps/sync_mobile.php index 9271b11..04b57cb 100644 --- a/apps/sync_mobile.php +++ b/apps/sync_mobile.php @@ -81,18 +81,18 @@ END
$url
-$lang_done +$lang_done END; } else { $activecodes = $database->select("mobile_codes", ["codeid", "code"], ["uid" => $_SESSION['uid']]); $content = '
' . lang("sync explained", false) . '
' - . '' + . '' . lang("generate sync", false) . ''; $content .= "
" . lang("active sync codes", false) . ":
"; $content .= "
"; if (count($activecodes) > 0) { foreach ($activecodes as $c) { - $content .= "
" . trim(chunk_split($c['code'], 5, ' ')) . "
"; + $content .= "
" . trim(chunk_split($c['code'], 5, ' ')) . "
"; } } else { $content .= "
" . lang("no active codes", false) . "
";