From: <ice...@us...> - 2013-07-29 14:31:17
|
Revision: 6163 http://sourceforge.net/p/web-erp/reponame/6163 Author: icedlava Date: 2013-07-29 14:31:14 +0000 (Mon, 29 Jul 2013) Log Message: ----------- Closing form and div elements. On recheck and final company check source shows missing closing body and html - still a problem. Modified Paths: -------------- trunk/install/index.php Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2013-07-29 03:00:55 UTC (rev 6162) +++ trunk/install/index.php 2013-07-29 14:31:14 UTC (rev 6163) @@ -910,6 +910,8 @@ <fieldset> <button type="submit" name="DbConfig"><?php echo _('Next Step'); ?></button> </fieldset> + </form> +</div> <?php } @@ -1017,7 +1019,7 @@ <legend><?php echo _('Installation option'); ?></legend> <ul> <li> - <label for="InstallDemo"><?php echo _('Install the demo data?'); ?>: </label><input type="checkbox" name="Demo" checked="checked" /> + <label for="InstallDemo"><?php echo _('Install the demo data?'); ?> </label><input type="checkbox" name="Demo" checked="checked" /> <span><?php echo _("WebERPDemo site and data will be installed"); ?></span> </li> </ul> @@ -1066,6 +1068,9 @@ <fieldset> <button type="submit" name="Install"><?php echo _('Install'); ?></button> </fieldset> + </form> +</div> + <?php } |