You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/07/26 02:26:30 UTC

svn commit: r425566 - /incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java

Author: agilliland
Date: Tue Jul 25 17:26:30 2006
New Revision: 425566

URL: http://svn.apache.org/viewvc?rev=425566&view=rev
Log:
urls formed by admin/authoring pages should be relative, not absolute.


Modified:
    incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java

Modified: incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java
URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java?rev=425566&r1=425565&r2=425566&view=diff
==============================================================================
--- incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java (original)
+++ incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/core/BasePageModel.java Tue Jul 25 17:26:30 2006
@@ -81,7 +81,7 @@
     
     public String getBaseURL()
     {
-        return RollerRuntimeConfig.getAbsoluteContextURL();
+        return RollerRuntimeConfig.getRelativeContextURL();
 	}
 
     public String getShortDateFormat()