]> git.mxchange.org Git - friendica-addons.git/blobdiff - webrtc/webrtc.php
Changed:
[friendica-addons.git] / webrtc / webrtc.php
index f2facf68bebb3ff8bc5f4c8e302ae70c1e5c9539..4597fb1a6933efd2a5129660018330b8888e4e85 100644 (file)
@@ -9,17 +9,11 @@
 use Friendica\Core\Hook;
 use Friendica\Core\Renderer;
 use Friendica\DI;
-use Friendica\Util\Strings;
 
 function webrtc_install() {
         Hook::register('app_menu', 'addon/webrtc/webrtc.php', 'webrtc_app_menu');
 }
 
-function webrtc_uninstall() {
-        Hook::unregister('app_menu', 'addon/webrtc/webrtc.php', 'webrtc_app_menu');
-
-}
-
 function webrtc_app_menu($a,&$b) {
        $b['app_menu'][] = '<div class="app-title"><a href="webrtc">' . DI::l10n()->t('WebRTC Videochat') . '</a></div>';
 }
@@ -32,7 +26,7 @@ function webrtc_addon_admin (&$a, &$o) {
        ]);
 }
 function webrtc_addon_admin_post (&$a) {
-        $url = (!empty($_POST['webrtcurl']) ? Strings::escapeTags(trim($_POST['webrtcurl'])) : '');
+        $url = trim($_POST['webrtcurl'] ?? '');
            DI::config()->set('webrtc', 'webrtcurl', $url);
 }
 
@@ -48,7 +42,7 @@ function webrtc_content(&$a) {
 
         /* embedd the landing page in an iframe */
         $o .= '<h2>'.DI::l10n()->t('Video Chat').'</h2>';
-        $o .= '<p>'.DI::l10n()->t('WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with.').'</p>';
+        $o .= '<p>'.DI::l10n()->t('WebRTC is a video and audio conferencing tool that works in all modern browsers. Just create a new chat room and send the link to someone you want to chat with.').'</p>';
        if ($webrtcurl == '') {
            $o .= '<p>'.DI::l10n()->t('Please contact your friendica admin and send a reminder to configure the WebRTC addon.').'</p>';
        } else {
@@ -58,4 +52,3 @@ function webrtc_content(&$a) {
 
         return $o;
 }
-?>