modules/admin-full: fix bad colspan in lease status template

This commit is contained in:
Jo-Philipp Wich 2010-11-08 09:29:48 +00:00
parent cb3caa6e30
commit ff9398b605

View file

@ -69,7 +69,7 @@
{ {
var tr = document.createElement('tr'); var tr = document.createElement('tr');
tr.className = 'cbi-section-table-row'; tr.className = 'cbi-section-table-row';
tr.innerHTML = '<td colspan="5"><em><br /><%:There are no active leases.%></em></td>'; tr.innerHTML = '<td colspan="4"><em><br /><%:There are no active leases.%></em></td>';
tb.rows[0].parentNode.appendChild(tr); tb.rows[0].parentNode.appendChild(tr);
} }
@ -91,7 +91,7 @@
<th class="cbi-section-table-cell"><%:Leasetime remaining%></th> <th class="cbi-section-table-cell"><%:Leasetime remaining%></th>
</tr> </tr>
<tr class="cbi-section-table-row"> <tr class="cbi-section-table-row">
<td colspan="5"><em><br /><%:Collecting data...%></em></td> <td colspan="4"><em><br /><%:Collecting data...%></em></td>
</tr> </tr>
</table> </table>
</fieldset> </fieldset>