]> git.mxchange.org Git - friendica.git/blob - mod/apps.php
small fixes to item post to try and sort out segfault issues on php 5.3 (?)
[friendica.git] / mod / apps.php
1 <?php
2
3
4 function apps_content(&$a) {
5
6         $o .= '<h3>' . t('Applications') . '</h3>';
7
8         $o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
9
10         if($a->apps)
11                 $o .= $a->apps;
12
13         return $o;
14
15 }