mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 09:04:26 +02:00
quattro: initial style of conversations
This commit is contained in:
parent
80af4f3fe6
commit
6b6f45f9f1
9 changed files with 366 additions and 65 deletions
|
@ -834,9 +834,14 @@ function feed_salmonlinks($nick) {
|
|||
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" class="icon remote-link"></a></div>' : '');
|
||||
return $plink;
|
||||
if (x($item,'plink') && (! $item['private'])){
|
||||
return array(
|
||||
'href' => $item['plink'],
|
||||
'title' => t('link to source'),
|
||||
);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}}
|
||||
|
||||
if(! function_exists('unamp')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue