Skip to content
Snippets Groups Projects
Commit 81c80ae5 authored by Bruno Nocera Zanette's avatar Bruno Nocera Zanette
Browse files

Remove port number from URL (Feed)

Remove port number from URL (Feed)
parent 6b88356a
No related branches found
No related tags found
No related merge requests found
...@@ -605,7 +605,7 @@ public class SyndicationFeed ...@@ -605,7 +605,7 @@ public class SyndicationFeed
{ {
baseURL = (request.isSecure()) ? "https://" : "http://"; baseURL = (request.isSecure()) ? "https://" : "http://";
baseURL += ConfigurationManager.getProperty("dspace.hostname"); baseURL += ConfigurationManager.getProperty("dspace.hostname");
baseURL += ":" + request.getServerPort(); //baseURL += ":" + request.getServerPort();
baseURL += request.getContextPath(); baseURL += request.getContextPath();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment