Skip to content

Commit

Permalink
Missing </div> into com_installer default.html
Browse files Browse the repository at this point in the history
Missing </div> into file administrator/components/com_installer/views/install/tmpl/default.html

Step to reproduce

Go to the extension manager and check if with https://validator.w3.org/nu/

You will have a message such:
There is a missing html tag line 183 which produce error during W3C validation using https://validator.w3.org/nu/
Error: Unclosed element div.
From line 583, column 3; to line 583, column 44
</div> <div id="j-main-container" class="span10">

The proposal is to add the missing <div> on line 177

Expected result

No more error

Actual result

Error: Unclosed element div.

System information

Joomla 3.4.1
  • Loading branch information
b92 committed Jun 27, 2015
1 parent 262d527 commit ed66f2a
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -174,6 +174,8 @@
<?php echo JHtml::_('bootstrap.endTab'); ?>
<?php endif; ?>

</div>

<input type="hidden" name="type" value="" />
<input type="hidden" name="installtype" value="upload" />
<input type="hidden" name="task" value="install.install" />
Expand Down

0 comments on commit ed66f2a

Please sign in to comment.