aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Viewconnections.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-18 12:29:08 +0000
committerMario <mario@mariovavti.com>2019-03-18 13:31:25 +0100
commit8893d9edc4a2f861a0f5aac2638140fa3ceea235 (patch)
treeeaee621c48ac4fb41959ae786feba8db7db6fb70 /Zotlabs/Module/Viewconnections.php
parent43753ec1133e1078f87cd609da008db9e935e998 (diff)
downloadvolse-hubzilla-8893d9edc4a2f861a0f5aac2638140fa3ceea235.tar.gz
volse-hubzilla-8893d9edc4a2f861a0f5aac2638140fa3ceea235.tar.bz2
volse-hubzilla-8893d9edc4a2f861a0f5aac2638140fa3ceea235.zip
use urlencode
(cherry picked from commit 2ec3e4a912777501f232d6255fe8ba5d0c147eee)
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 14a5ccb86..30df0b9e4 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(urlencode($_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'),