aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-19 00:56:15 -0800
committerFriendika <info@friendika.com>2011-02-19 00:56:15 -0800
commit642a71ffdee21b02e5fbee2602a3b6a2e3fe54b8 (patch)
tree5b95ce5e30d79a5bb257ce917c7cd28d6d047e59 /boot.php
parent0bf8e418a8b8c57607ed8a52cff6b3ac53d38d05 (diff)
downloadvolse-hubzilla-642a71ffdee21b02e5fbee2602a3b6a2e3fe54b8.tar.gz
volse-hubzilla-642a71ffdee21b02e5fbee2602a3b6a2e3fe54b8.tar.bz2
volse-hubzilla-642a71ffdee21b02e5fbee2602a3b6a2e3fe54b8.zip
app menu - and a demo application 'tictac'
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 322a4e307..7f6868936 100644
--- a/boot.php
+++ b/boot.php
@@ -196,6 +196,7 @@ class App {
public $timezone;
public $interactive = true;
public $plugins;
+ public $apps;
private $scheme;
private $hostname;
@@ -2453,7 +2454,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') . '"><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" ><img src="' . $a->get_baseurl() . '/images/remote-link.gif" alt="' . t('link to source') . '" /></a></div>' : '');
return $plink;
}}