update function calls

update function calls to new class
This commit is contained in:
Adam Magness 2018-11-05 07:47:04 -05:00
parent 7f1fda43ae
commit b8df74beca
7 changed files with 25 additions and 25 deletions

View file

@ -20,7 +20,7 @@
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
use Friendica\Util\XML;
use Friendica\Util\Strings;
function qcomment_install() {
Addon::registerHook('addon_settings', 'addon/qcomment/qcomment.php', 'qcomment_addon_settings');
@ -51,7 +51,7 @@ function qcomment_addon_settings(&$a, &$s)
$s .= '<div id="qcomment-wrapper">';
$s .= '<div id="qcomment-desc">' . L10n::t("Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.") . '</div>';
$s .= '<label id="qcomment-label" for="qcomment-words">' . L10n::t('Enter quick comments, one per line') . ' </label>';
$s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(XML::unescape($words)) . '</textarea>';
$s .= '<textarea id="qcomment-words" type="text" name="qcomment-words" >' . htmlspecialchars(Strings::unescape($words)) . '</textarea>';
$s .= '</div><div class="clear"></div>';
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="qcomment-submit" name="qcomment-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
@ -67,7 +67,7 @@ function qcomment_addon_settings_post(&$a, &$b)
}
if ($_POST['qcomment-submit']) {
PConfig::set(local_user(), 'qcomment', 'words', XML::escape($_POST['qcomment-words']));
PConfig::set(local_user(), 'qcomment', 'words', Strings::escape($_POST['qcomment-words']));
info(L10n::t('Quick Comment settings saved.') . EOL);
}
}