Is it possible to support input formats in CustomError since it's not creating nodes? It would be swell to provide rich feedback ala https://svn.bryght.com/dev/wiki/CustomPageNotFoundSearchPage without those 404 popular page problems.
Is it possible to support input formats in CustomError since it's not creating nodes? It would be swell to provide rich feedback ala https://svn.bryght.com/dev/wiki/CustomPageNotFoundSearchPage without those 404 popular page problems.
Comments
Comment #1
kbahey commentedYou can already do that using customerror by putting the code in the template.php file of your theme.
Just add two functions called:
yourthemename_customerror_403()
and
yourthemename_customerror_404()
In there, you can have all the PHP you can eat. Just do a
return $output
At the end of the function.