From fdbf24494538a18194b28bb89967a01d634a74ab Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 22 Oct 2018 22:44:17 -0400 Subject: [PATCH] Adding missing parentheses in mod/dfrn_poll --- mod/dfrn_poll.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 4e7521b0ed..354cf6b4ca 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -549,14 +549,14 @@ function dfrn_poll_content(App $a) switch ($destination_url) { case 'profile': - $a->internalRedirect('profile/' . $profile . '?f=&tab=profile'; + $a->internalRedirect('profile/' . $profile . '?f=&tab=profile'); break; case 'photos': - $a->internalRedirect('photos/' . $profile; + $a->internalRedirect('photos/' . $profile); break; case 'status': case '': - $a->internalRedirect('profile/' . $profile; + $a->internalRedirect('profile/' . $profile); break; default: $appendix = (strstr($destination_url, '?') ? '&f=&redir=1' : '?f=&redir=1');