fixed a bug in conference display of new messages, and added a couple of words

to the dictionary
This commit is contained in:
Eric J. Bowersox
2001-07-23 00:20:26 +00:00
parent e108be62da
commit 334fdb5c6b
2 changed files with 7 additions and 3 deletions

View File

@@ -425,11 +425,15 @@ public class ConfDisplay extends VeniceServlet
} // end while
if (topic==null) // no suitable topic found - just create the topic listing
return new TopicListing(request,sig,conf,opts.getViewOption(conf.getConfID()),
opts.getSortOption(conf.getConfID()));
// determine what the post interval is we want to display
PostInterval piv = getInterval(engine,request,topic,on_error);
// create the topic posts view
tpos = new TopicPosts(request,engine,sig,conf,topic,piv.getFirst(),piv.getLast(),true,false);
return new TopicPosts(request,engine,sig,conf,topic,piv.getFirst(),piv.getLast(),true,false);
} // end try
catch (DataException de)
@@ -443,8 +447,6 @@ public class ConfDisplay extends VeniceServlet
} // end catch
return tpos; // this is what we need!
} // end if (creating a "read new" topic list view)
else
{ // topic listing only...