diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-02 09:54:57 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-02 09:54:57 +0800 |
commit | 83db4da4e36b3c5438f4759c835aa8440f650915 (patch) | |
tree | ac75ca5876c004a7ec37fa94a08859bfd8e54e04 /mbbsd/board.c | |
parent | 20532cc19e163e5e1d1dd3400ab5cf542e4f0937 (diff) | |
download | pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar.gz pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar.bz2 pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar.lz pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar.xz pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.tar.zst pttbbs-83db4da4e36b3c5438f4759c835aa8440f650915.zip |
check post perm on demand
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1667 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r-- | mbbsd/board.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index dff9d9b0..200376eb 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -340,20 +340,6 @@ void imovefav(int old) move_in_current_folder(old, new); } -void load_brdbuf(void) -{ - char buf[128]; - setuserfile(buf, FAV4); - if( !dashf(buf) ) { - fav_v3_to_v4(); - } - fav_load(); - - /* subscribe new fav (deprecated) */ - if (get_fav_root() != NULL) - updatenewfav(1); -} - void init_brdbuf() { @@ -921,7 +907,7 @@ choose_board(int newflag) setutmpmode(newflag ? READNEW : READBRD); if( get_current_fav() == NULL ) - load_brdbuf(); + fav_load(); ++choose_board_depth; brdnum = 0; if (!cuser->userlevel) /* guest yank all boards */ |