Changeset 15 for trunk/inc/communities/mine.inc.php
- Timestamp:
- 08/09/05 22:30:14 (7 years ago)
- Files:
-
- 1 modified
-
trunk/inc/communities/mine.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc/communities/mine.inc.php
r1 r15 23 23 ******************** http://opensource.ikse.net/projects/dotnode ***/ 24 24 25 $ smarty->assign('Title', 'My communities');25 $_SMARTY['Title'] = 'My communities'; 26 26 27 27 $my_communities_r = $db->query('SELECT name, community.id_comm as id_comm, description, nb_members, last_post_date, community.id as id FROM community LEFT JOIN user_comm USING (id_comm) WHERE user_comm.id=? AND user_comm.status=? ORDER BY last_post_date DESC', array($_SESSION['my_id'], 'ok') ); … … 45 45 } 46 46 47 $ smarty->assign('my_communities', $my_communities);47 $_SMARTY['my_communities'] = $my_communities; 48 48 49 49 ?>
