Commit 506bd724 authored by Daryl Herzmann's avatar Daryl Herzmann Committed by akrherz

OF-330: Allow room subject to be set blank


git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@11536 b35dd754-fafc-0310-a699-88a17e54d16e
parent df41843c
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
String reservedNick = ParamUtils.getParameter(request, "roomconfig_reservednick"); String reservedNick = ParamUtils.getParameter(request, "roomconfig_reservednick");
String canChangeNick = ParamUtils.getParameter(request, "roomconfig_canchangenick"); String canChangeNick = ParamUtils.getParameter(request, "roomconfig_canchangenick");
String registrationEnabled = ParamUtils.getParameter(request, "roomconfig_registration"); String registrationEnabled = ParamUtils.getParameter(request, "roomconfig_registration");
String roomSubject = ParamUtils.getParameter(request, "room_topic"); String roomSubject = ParamUtils.getParameter(request, "room_topic", true);
if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() < 1) { if (webManager.getMultiUserChatManager().getMultiUserChatServicesCount() < 1) {
// No services exist, so redirect to where one can configure the services // No services exist, so redirect to where one can configure the services
...@@ -587,4 +587,4 @@ ...@@ -587,4 +587,4 @@
</form> </form>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment