summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-02-01 19:31:26 +0800
committerscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-02-01 19:31:26 +0800
commita1c2ca958e43e28a5d9e16ef239d96ad98931e29 (patch)
tree0fd016c62831580de2f506d143be3fa022b8a2bd /mbbsd
parent7725305f201808481e9431875148d43cd622c432 (diff)
downloadpttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar.gz
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar.bz2
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar.lz
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar.xz
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.tar.zst
pttbbs-a1c2ca958e43e28a5d9e16ef239d96ad98931e29.zip
Fix wrong result on ALLPOST when editting artical.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1504 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/bbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index 7b725b81..8c93f7b3 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -997,7 +997,7 @@ edit_post(int ent, fileheader_t * fhdr, char *direct)
}
if (!(currbrdattr & BRD_HIDE) && (!bp->level || (currbrdattr & BRD_POSTMASK)))
- do_crosspost(ALLPOST, &postfile, fpath);
+ do_crosspost(ALLPOST, fhdr, fpath);
return FULLUPDATE;
}