demos: overview file headers are not included if $plain is set in php

This commit is contained in:
Paul Bakaus 2008-12-23 17:08:26 +00:00
parent cca491dc4f
commit af317289a6

View File

@ -1,3 +1,4 @@
<?php if(!isset($plain)) { ?>
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
@ -25,6 +26,7 @@
</script> </script>
</head> </head>
<body> <body>
<?php } ?>
<table cellspacing="0" cellpadding="0" class="layout-grid" id="functional"> <table cellspacing="0" cellpadding="0" class="layout-grid" id="functional">
<tr> <tr>
<td class="left-nav"> <td class="left-nav">
@ -81,6 +83,7 @@
</td> </td>
</tr> </tr>
</table> </table>
<?php if(!isset($plain)) { ?>
</body> </body>
</html> </html>
<?php } ?>