]> git.mxchange.org Git - friendica.git/commitdiff
Trying this fix for endless redirection
authorfriendica <info@friendica.com>
Tue, 16 Oct 2012 01:51:22 +0000 (18:51 -0700)
committerfriendica <info@friendica.com>
Tue, 16 Oct 2012 01:51:22 +0000 (18:51 -0700)
include/redir.php

index 2ca9969e27cac50356bd73f2e83945e92338b674..42008ddd6b78d7ef289d48f6cb61ea04b3f4b86c 100644 (file)
@@ -2,12 +2,8 @@
 
 function auto_redir(&$a, $contact_nick) {
 
-       // disabling temporarily - seeing a lot of recursive redirects, triggered in my case
-       // because one of my contacts has the same nickname as me so it's redirecting to his site 
-       // (I'm trying to load my own profile page and he is remote so it shouldn't redirect anyway). 
-       // Need some time to sort this out.
-
-       return;
+       if((! $contact_nick) || ($contact_nick === $a->user['nickname']))
+               return;
 
        if(local_user()) {