XF 1.2 Find out if this page represents a 404 or 403

rellek

Well-known member
Hi,

is there an easy way to find out if a page a 404 or 403 message? I'd like to make an exception in the templates (if cond1 and cond2 and not 404 and not 403 then display something).

Thanks :)
 
Okay, I think I found a solution.

This seems to work. Question: Is there anything wrong with this?

Code:
<xen:if is="strpos({xen:raw $contents}, 'errorOverlay')">
This only appears only if there's an error...
</xen:if>
 
Top Bottom