Commit 615d5f78 by Harsh Shah

Issue fixed for Home page when Admin is already logged in

parent fb28a68a
......@@ -103,6 +103,11 @@ public class WebUtils
public static String getPortalName(ObjectTransaction objTran, Article article)
{
if(article != null && article.isHomePage())
{
return ADMIN_PORTAL; //Because default home page is Admin Portal Home
}
Article applicantArticle = getArticleByShortCut(objTran, APPLICANT_PORTAL);
Article adminArticle = getArticleByShortCut(objTran, ADMIN_PORTAL);
......
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