Revision 80fa045a
Added by Jim Pingle over 14 years ago
usr/local/www/vpn_openvpn_server.php | ||
---|---|---|
1215 | 1215 |
<?php else: ?> |
1216 | 1216 |
|
1217 | 1217 |
<table class="sortable" width="100%" border="0" cellpadding="0" cellspacing="0"> |
1218 |
<thead> |
|
1218 | 1219 |
<tr> |
1219 | 1220 |
<td width="10%" class="listhdrr"><?=gettext("Disabled"); ?></td> |
1220 | 1221 |
<td width="10%" class="listhdrr"><?=gettext("Protocol / Port"); ?></td> |
... | ... | |
1222 | 1223 |
<td width="40%" class="listhdrr"><?=gettext("Description"); ?></td> |
1223 | 1224 |
<td width="10%" class="list"></td> |
1224 | 1225 |
</tr> |
1226 |
</thead> |
|
1227 |
<tbody> |
|
1225 | 1228 |
<?php |
1226 | 1229 |
$i = 0; |
1227 | 1230 |
foreach($a_server as $server): |
... | ... | |
1256 | 1259 |
$i++; |
1257 | 1260 |
endforeach; |
1258 | 1261 |
?> |
1262 |
</tbody> |
|
1263 |
<tfoot> |
|
1259 | 1264 |
<tr> |
1260 | 1265 |
<td class="list" colspan="4"></td> |
1261 | 1266 |
<td class="list"> |
... | ... | |
1263 | 1268 |
</a> |
1264 | 1269 |
</td> |
1265 | 1270 |
</tr> |
1271 |
</tfoot> |
|
1266 | 1272 |
</table> |
1267 | 1273 |
|
1268 | 1274 |
<?=gettext("Additional OpenVPN servers can be added here.");?> |
Also available in: Unified diff
Properly segment the OpenVPN server list table so it will sort properly.