]> git.mxchange.org Git - friendica.git/commitdiff
Adding missing parentheses in mod/dfrn_poll
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 23 Oct 2018 02:44:17 +0000 (22:44 -0400)
committerGitHub <noreply@github.com>
Tue, 23 Oct 2018 02:44:17 +0000 (22:44 -0400)
mod/dfrn_poll.php

index 4e7521b0edcc81651980bdb8cb03ad1e46a4cd63..354cf6b4caafcfb608a53eb7f4d31247c3a72b97 100644 (file)
@@ -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');