diff options
author | Friendika <info@friendika.com> | 2011-05-24 20:59:56 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-24 20:59:56 -0700 |
commit | 20a1500c25aecb8286432426a7e99a172a6e0553 (patch) | |
tree | ed2be022b0712d31b131439f07dd997a84e4e6ed | |
parent | 323938144706584775794937abcb23179ee1a20b (diff) | |
download | volse-hubzilla-20a1500c25aecb8286432426a7e99a172a6e0553.tar.gz volse-hubzilla-20a1500c25aecb8286432426a7e99a172a6e0553.tar.bz2 volse-hubzilla-20a1500c25aecb8286432426a7e99a172a6e0553.zip |
open attachment in new window
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2569,7 +2569,7 @@ function prepare_body($item,$attach = false) { $title = ((strlen(trim($matches[4]))) ? escape_tags(trim($matches[4])) : escape_tags($matches[1])); $title .= ' ' . $matches[2] . ' ' . t('bytes'); - $s .= '<a href="' . strip_tags($matches[1]) . '" title="' . $title . '" class="attachlink" >' . $icon . '</a>'; + $s .= '<a href="' . strip_tags($matches[1]) . '" title="' . $title . '" class="attachlink" target="external-link" >' . $icon . '</a>'; } } } |