diff options
author | Friendika <info@friendika.com> | 2011-02-19 00:56:15 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-19 00:56:15 -0800 |
commit | 642a71ffdee21b02e5fbee2602a3b6a2e3fe54b8 (patch) | |
tree | 5b95ce5e30d79a5bb257ce917c7cd28d6d047e59 /boot.php | |
parent | 0bf8e418a8b8c57607ed8a52cff6b3ac53d38d05 (diff) | |
download | volse-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.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; }} |