fixed a bug in conference display of new messages, and added a couple of words
to the dictionary
This commit is contained in:
parent
e108be62da
commit
334fdb5c6b
|
@ -61,6 +61,7 @@ marillion
|
||||||
mdt
|
mdt
|
||||||
minbar
|
minbar
|
||||||
minbari
|
minbari
|
||||||
|
mom
|
||||||
mp
|
mp
|
||||||
mr
|
mr
|
||||||
mst
|
mst
|
||||||
|
@ -128,6 +129,7 @@ webb
|
||||||
webbme
|
webbme
|
||||||
won't
|
won't
|
||||||
wouldn't
|
wouldn't
|
||||||
|
wow
|
||||||
you'd
|
you'd
|
||||||
you'll
|
you'll
|
||||||
you're
|
you're
|
||||||
|
|
|
@ -425,11 +425,15 @@ public class ConfDisplay extends VeniceServlet
|
||||||
|
|
||||||
} // end while
|
} // 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
|
// determine what the post interval is we want to display
|
||||||
PostInterval piv = getInterval(engine,request,topic,on_error);
|
PostInterval piv = getInterval(engine,request,topic,on_error);
|
||||||
|
|
||||||
// create the topic posts view
|
// 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
|
} // end try
|
||||||
catch (DataException de)
|
catch (DataException de)
|
||||||
|
@ -443,8 +447,6 @@ public class ConfDisplay extends VeniceServlet
|
||||||
|
|
||||||
} // end catch
|
} // end catch
|
||||||
|
|
||||||
return tpos; // this is what we need!
|
|
||||||
|
|
||||||
} // end if (creating a "read new" topic list view)
|
} // end if (creating a "read new" topic list view)
|
||||||
else
|
else
|
||||||
{ // topic listing only...
|
{ // topic listing only...
|
||||||
|
|
Loading…
Reference in New Issue
Block a user