Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 435 → Rev 436

/impl/src/web/user/pop/messages.jsp
28,23 → 28,35
if (popMessages == null)
{
%>
<p>
<bean:message key="pop.title" arg0="${UserSession.user.pop3username}"/>
</p>
<p>
<bean:message key="pop.not.configured"/>
</p>
<table class="messages">
<tr>
<th>
<bean:message key="pop.title" arg0="${UserSession.user.pop3username}"/>
</th>
</tr>
<tr>
<th>
<bean:message key="pop.not.configured"/>
</th>
</tr>
</table
<%
}
else if (popMessages.size() == 0)
{
%>
<p>
<bean:message key="pop.title" arg0="${UserSession.user.pop3username}"/>
</p>
<p>
<bean:message key="pop.no.messages"/>
</p>
<table class="messages">
<tr>
<th>
<bean:message key="pop.title" arg0="${UserSession.user.pop3username}"/>
</th>
</tr>
<tr>
<th>
<bean:message key="pop.no.messages"/>
</th>
</tr>
</table>
<%
}
else