Skip to content

Commit

Permalink
Merge pull request joomla#2752 from oe1tkt/patch-2
Browse files Browse the repository at this point in the history
Invalid attribute width inside <tr> and additionally obsolete attributes
  • Loading branch information
infograf768 committed Mar 3, 2014
2 parents 5a0cf22 + 59c5171 commit f69bb00
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@

JFactory::getDocument()->addScriptDeclaration($script);
?>
<form>
<table width="100%" align="center">
<tr width="40%">
<form>
<table>
<tr>
<td class="key" align="right">
<label for="title">
<?php echo JText::_('COM_CONTENT_PAGEBREAK_TITLE'); ?>
Expand All @@ -41,7 +41,7 @@
<input type="text" id="title" name="title" />
</td>
</tr>
<tr width="60%">
<tr>
<td class="key" align="right">
<label for="alias">
<?php echo JText::_('COM_CONTENT_PAGEBREAK_TOC'); ?>
Expand All @@ -52,5 +52,5 @@
</td>
</tr>
</table>
</form>
<button onclick="insertPagebreak();"><?php echo JText::_('COM_CONTENT_PAGEBREAK_INSERT_BUTTON'); ?></button>
</form>
<button onclick="insertPagebreak();"><?php echo JText::_('COM_CONTENT_PAGEBREAK_INSERT_BUTTON'); ?></button>

0 comments on commit f69bb00

Please sign in to comment.