patches for bugs spotted while reinstalling Phoenix server (EMinds)

This commit is contained in:
Eric J. Bowersox 2004-04-04 23:19:27 +00:00
parent 372f548f7f
commit adca4f5d91
3 changed files with 10 additions and 7 deletions

View File

@ -239,7 +239,8 @@ class PublishedMessageImpl implements TopicMessageContext
if (rs.next())
text_cache = rs.getString(1);
else
return "Data Missing"; // FUTURE: throw an exception?
return "<b>[[Venice Internal Error: Data Missing]]</b>";
// FUTURE: throw an exception?
} // end try
catch (SQLException e)

View File

@ -333,7 +333,8 @@ class TopicMessageUserContextImpl implements TopicMessageContext
if (rs.next())
text_cache = rs.getString(1);
else
return "Data Missing"; // FUTURE: throw an exception?
return "<b>[[Venice Internal Error: Data Missing]]</b>";
// FUTURE: throw an exception?
} // end try
finally

View File

@ -1757,12 +1757,13 @@ class CookieControlImpl implements CookieControl
{ // load the cookies into a HashMap
old_cookies = new HashMap();
Cookie[] raw_list = httpreq.getCookies();
if (raw_list!=null)
for (int i=0; i<raw_list.length; i++)
{ // save off the cookies
Cookie tmp = raw_list[i];
old_cookies.put(tmp.getName(),tmp);
} // end for
} // end for and if
if (logger.isDebugEnabled())
logger.debug("loadCookies(): " + old_cookies.size() + " cookie(s) loaded");