aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-28 15:43:52 -0700
committerFriendika <info@friendika.com>2011-04-28 15:43:52 -0700
commite14ab2d369391ee9c97d5568034423f303222019 (patch)
tree4f7609584fdcaf2f6063ac4b0f1b2a901373e024 /boot.php
parent0ac4d6ecc97baf3a8b40e411d2e57e9908667675 (diff)
parentf6984f9929074db46e38c1a26a03d91309b29af2 (diff)
downloadvolse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.tar.gz
volse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.tar.bz2
volse-hubzilla-e14ab2d369391ee9c97d5568034423f303222019.zip
Merged pull request #92 from fabrixxm/dispy.
Dispy theme [wip]
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index b0412e051..4e2379469 100644
--- a/boot.php
+++ b/boot.php
@@ -2631,7 +2631,7 @@ if(! function_exists('get_plink')) {
function get_plink($item) {
$a = get_app();
$plink = (((x($item,'plink')) && (! $item['private'])) ? '<div class="wall-item-links-wrapper"><a href="'
- . $item['plink'] . '" title="' . t('link to source') . '" target="external-link" ><img src="' . $a->get_baseurl() . '/images/remote-link.gif" alt="' . t('link to source') . '" /></a></div>' : '');
+ . $item['plink'] . '" title="' . t('link to source') . '" target="external-link" class="icon remote-link"></a></div>' : '');
return $plink;
}}