From 7e03e9f5e2a35c503bd5ab064a50afcaae332d8f Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sat, 13 May 2017 17:36:19 -0600 Subject: [PATCH] Change account security icon from key to lock, make code a bit more readable --- apps/account_security.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/account_security.php b/apps/account_security.php index 4a7fba1..ad28f31 100644 --- a/apps/account_security.php +++ b/apps/account_security.php @@ -8,7 +8,12 @@ addMultiLangStrings(["en_us" => [ ]); $APPS["account_security"]["i18n"] = TRUE; $APPS["account_security"]["title"] = "account security"; -$APPS["account_security"]["icon"] = "key"; -$content = "

" . lang("manage security description", false) . '

' . lang("manage account security", false) . ''; +$APPS["account_security"]["icon"] = "lock"; +$content = "

" + . lang("manage security description", false) + . '

' + . '' + . lang("manage account security", false) + . ''; $APPS["account_security"]["content"] = $content; ?> \ No newline at end of file