Commit ed6e3844 by Nilu

fix company name not showing in title of C pages

parent ddf02938
......@@ -62,9 +62,15 @@ public class Company extends BaseCompany
}
public Boolean isEmailCorrect()
{
return StringUtils.isEmailAddress(getUserEmail());
}
@Override
public String getToString()
{
return StringUtils.subNulls(getCompanyName(), super.getToString());
}
}
\ No newline at end of file
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