You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2006/04/04 22:43:25 UTC

svn commit: r391406 - /incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java

Author: snoopdave
Date: Tue Apr  4 13:43:24 2006
New Revision: 391406

URL: http://svn.apache.org/viewcvs?rev=391406&view=rev
Log:
Fixing ROL-1106 regression in RSS feed level link

Modified:
    incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java

Modified: incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java?rev=391406&r1=391405&r2=391406&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java (original)
+++ incubator/roller/branches/roller_2.2/src/org/roller/presentation/velocity/ContextLoader.java Tue Apr  4 13:43:24 2006
@@ -355,7 +355,7 @@
         
         HttpServletRequest request = rreq.getRequest();
         String url = null;
-        if (website != null) {
+        if (website != null  && !"zzz_none_zzz".equals(website.getHandle())) {
             url = Utilities.escapeHTML(
                       rollerCtx.getAbsoluteContextUrl(request) 
                           + "/page/" + website.getHandle());