removed the automatic HTML escaping from content headers and moved it out
to the JSPs and other classes as needed...this may speed up things a tiny bit, but will definitely help in displaying topic names with HTML and escaped characters correctly
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
Copyright (C) 2001-02 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
--%>
|
||||
@@ -29,9 +29,13 @@
|
||||
<% if (view.getTopic()!=null) { %>
|
||||
<util:subtitle>in Topic: <%= view.getTopic().getName() %></util:subtitle>
|
||||
<% } else if (view.getConference()!=null) { %>
|
||||
<util:subtitle>in Conference: <%= view.getConference().getName() %></util:subtitle>
|
||||
<util:subtitle>
|
||||
in Conference: <util:escape><%= view.getConference().getName() %></util:escape>
|
||||
</util:subtitle>
|
||||
<% } else { %>
|
||||
<util:subtitle>in Community: <%= view.getCommunity().getName() %></util:subtitle>
|
||||
<util:subtitle>
|
||||
in Community: <util:escape><%= view.getCommunity().getName() %></util:escape>
|
||||
</util:subtitle>
|
||||
<% } // end if %>
|
||||
</util:header>
|
||||
<util:font color="content.fg" size="content"><util:xlink>
|
||||
|
||||
Reference in New Issue
Block a user