update function calls
[friendica-addons.git/.git] / qcomment / qcomment.php
index 16c5a44..5089c27 100644 (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);
        }
 }