aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Viewconnections.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-18 12:19:24 +0000
committerMario <mario@mariovavti.com>2019-03-18 13:31:03 +0100
commit43753ec1133e1078f87cd609da008db9e935e998 (patch)
tree80a91cd842f2885a4c516aaf6aa3fa0e6de6db0b /Zotlabs/Module/Viewconnections.php
parentf1fee1239b57842f56c456b57f3e8910b0b5d6f7 (diff)
downloadvolse-hubzilla-43753ec1133e1078f87cd609da008db9e935e998.tar.gz
volse-hubzilla-43753ec1133e1078f87cd609da008db9e935e998.tar.bz2
volse-hubzilla-43753ec1133e1078f87cd609da008db9e935e998.zip
ENT_COMPAT will only take care of double-quotes. Use double-quotes here to prevent XSS
(cherry picked from commit a086745ec021add5638a0527d4e8e14835591e93)
Diffstat (limited to 'Zotlabs/Module/Viewconnections.php')
-rw-r--r--Zotlabs/Module/Viewconnections.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Viewconnections.php b/Zotlabs/Module/Viewconnections.php
index 0a5e86907..14a5ccb86 100644
--- a/Zotlabs/Module/Viewconnections.php
+++ b/Zotlabs/Module/Viewconnections.php
@@ -107,7 +107,7 @@ class Viewconnections extends \Zotlabs\Web\Controller {
killme();
}
else {
- $o .= "<script> var page_query = '" . escape_tags($_GET['q']) . "'; var extra_args = '" . extra_query_args() . "' ; </script>";
+ $o .= '<script>var page_query = "' . escape_tags($_GET['q']) . '"; var extra_args = "' . extra_query_args() . '";</script>';
$tpl = get_markup_template("viewcontact_template.tpl");
$o .= replace_macros($tpl, array(
'$title' => t('View Connections'),