]> git.mxchange.org Git - friendica.git/commitdiff
attachments from non-friendica contacts shouldn't go through redir - it won't work
authorfriendica <info@friendica.com>
Tue, 4 Sep 2012 04:31:35 +0000 (21:31 -0700)
committerfriendica <info@friendica.com>
Tue, 4 Sep 2012 04:31:35 +0000 (21:31 -0700)
include/text.php

index 3783d2accd9dbbce3d8bdf3fac9056d7897c98e4..c1e01343a8cd856134a3d68ca7f45a3975197b5d 100644 (file)
@@ -1005,7 +1005,7 @@ function prepare_body($item,$attach = false) {
                                        }
                                        $title = ((strlen(trim($mtch[4]))) ? escape_tags(trim($mtch[4])) : escape_tags($mtch[1]));
                                        $title .= ' ' . $mtch[2] . ' ' . t('bytes');
-                                       if((local_user() == $item['uid']) && $item['contact-id'] != $a->contact['id'])
+                                       if((local_user() == $item['uid']) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN))
                                                $the_url = $a->get_baseurl() . '/redir/' . $item['contact-id'] . '?f=1&url=' . $mtch[1];
                                        else
                                                $the_url = $mtch[1];