Changeset 15 for trunk/inc/bookmarks.inc.php
- Timestamp:
- 08/09/05 22:30:14 (7 years ago)
- Files:
-
- 1 modified
-
trunk/inc/bookmarks.inc.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc/bookmarks.inc.php
r1 r15 24 24 25 25 include(INCLUDESPATH.'/bookmarks.inc.php'); 26 $ smarty->assign('Title','Bookmarks');26 $_SMARTY['Title'] = 'Bookmarks'; 27 27 28 28 if($token[1]=='category' && is_numeric($token[2])) … … 58 58 59 59 $path = get_cat_path($token[2]); 60 $ smarty->assign('path',$path);60 $_SMARTY['path'] = $path; 61 61 } 62 62 $user['info'] = get_cache_user_info($url_id); … … 76 76 $leftmenu["/bookmarks/$url_id"] = 'Bookmarks'; 77 77 78 $ smarty->assign('leftmenu',$leftmenu);78 $_SMARTY['leftmenu'] = $leftmenu; 79 79 /*****************************************/ 80 80 81 $ smarty->assign('leftmenu',$leftmenu);82 $ smarty->assign('links',$links);83 $ smarty->assign('user',$user);81 $_SMARTY['leftmenu'] = $leftmenu; 82 $_SMARTY['links'] = $links; 83 $_SMARTY['user'] = $user; 84 84 85 85
