You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // misc user functions
-
- wn.user_info = function(uid) {
- var def = {
- 'fullname':uid,
- 'image': 'lib/images/ui/no_img_m.gif'
- }
- if(!wn.boot.user_info) return def
- if(!wn.boot.user_info[uid]) return def
- if(!wn.boot.user_info[uid].fullname)
- wn.boot.user_info[uid].fullname = uid;
- if(!wn.boot.user_info[uid].image)
- wn.boot.user_info[uid].image = def.image;
- return wn.boot.user_info[uid];
- }
|