From 58ec90b915592a36129f269324b187081b798e84 Mon Sep 17 00:00:00 2001 From: very-ape Date: Mon, 17 May 2021 10:17:50 -0700 Subject: [PATCH] Switch from HTML to BBCode for 'Basic Settings' notice. --- saml/saml.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/saml/saml.php b/saml/saml.php index 167c9fa3..bf4ffa16 100755 --- a/saml/saml.php +++ b/saml/saml.php @@ -5,6 +5,7 @@ * Version: 0.0 * Author: Ryan */ +use Friendica\Content\Text\BBCode; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\Renderer; @@ -74,11 +75,11 @@ function saml_head(&$a, &$b) { } function saml_footer(&$a, &$b) { - $fragment = addslashes(DI::config()->get('saml', 'settings_statement')); + $fragment = addslashes(BBCode::convert(DI::config()->get('saml', 'settings_statement'))); $b .= << var target=$("#settings-nickname-desc"); -if (target.length) { target.append("$fragment"); } +if (target.length) { target.append("

$fragment

"); } EOL; } @@ -206,7 +207,7 @@ function saml_addon_admin (&$a, &$o) { saml_input( 'settings_statement', 'Settings statement', - 'A statement on the settings page explaining where the user should go to change their e-mail and password. HTML allowed.' + 'A statement on the settings page explaining where the user should go to change their e-mail and password. BBCode allowed.' ) + saml_input( 'idp_id',