friendica/mod/apps.php

14 lines
132 B
PHP
Raw Normal View History

2011-02-19 10:01:33 +01:00
<?php
function apps_content(&$a) {
$o .= '<h3>' . t('Applications') . '</h3>';
if($a->apps)
$o .= $a->apps;
return $o;
}