From: <var...@us...> - 2011-04-08 13:57:18
|
Revision: 8028 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8028&view=rev Author: vargenau Date: 2011-04-08 13:57:12 +0000 (Fri, 08 Apr 2011) Log Message: ----------- Add <body> and </body> when in dump mode Modified Paths: -------------- trunk/themes/fusionforge/templates/body.tmpl Modified: trunk/themes/fusionforge/templates/body.tmpl =================================================================== --- trunk/themes/fusionforge/templates/body.tmpl 2011-04-08 13:03:38 UTC (rev 8027) +++ trunk/themes/fusionforge/templates/body.tmpl 2011-04-08 13:57:12 UTC (rev 8028) @@ -1,6 +1,9 @@ <?php // -*-php-*- // $Id$ ?> +<?php if ($WikiTheme->DUMP_MODE) { ?> +<body> +<?php } ?> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> @@ -44,3 +47,6 @@ </tr> </table> <?php echo Template('bottom') ?> +<?php if ($WikiTheme->DUMP_MODE) { ?> +</body> +<?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |