Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / units / friends / user_friends.php
blobfa3f30575e43ffe4bac3022d06a113f99ea8cc29
1 <?php
2 global $CFG,$USER;
4 if (logged_on) {
5 $friends = array();
6 if ($result = get_records_sql('SELECT u.ident,1 FROM '.$CFG->prefix.'friends
7 JOIN '.$CFG->prefix.'users u ON u.ident = f.friend
8 WHERE owner = ? AND u.user_type = ? LIMIT 8'
9 ,array($USER->ident,'person'))) {
10 foreach($result as $row) {
11 $friends[] = $row->ident;
14 run("users:infobox",array(".". gettext("Your Friends") ."",array($friends),"<a href=\"friends/\">". gettext("Friends Screen") ."</a>"));