liferay / liferay-aui-upgrade-tool

Upgrade themes/plugins from Liferay Portal 6.1 to 6.2
13 stars 94 forks source link

Does not replace aui-helper-hidden in jsp when class attribute is mixing class and scriptlet #31

Closed johnnyhowey closed 11 years ago

johnnyhowey commented 11 years ago
<c:if test="<%= total > pageDelta %>">
    <div class="navigation">
        <span class="left-nav <%= (start == 0) ? "aui-helper-hidden" : "previous" %>">
            <a href="javascript:;"><liferay-ui:message key="previous" /></a>
        </span>

        <span>
            <liferay-ui:message arguments="<%= new Object[] {(start + 1), ((total >= end) ? end : total), total} %>" key="showing-x-x-of-x-results" />
        </span>

        <span class="right-nav <%= (total <= end) ? "aui-helper-hidden" : "next" %>">
            <a href="javascript:;"><liferay-ui:message key="next" /></a>
        </span>
    </div>
</c:if>