Skip to content

Commit 7cdbe58

Browse files
WEB. Fixed bulk actions form id
1 parent 31b55f3 commit 7cdbe58

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

web/templates/admin/edit_web.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240
<textarea size="20" class="vst-textinput" name="v_ssl_ca"><?php if (!empty($v_ssl_ca)) echo htmlentities($v_ssl_ca); ?></textarea>
241241
</td>
242242
</tr>
243-
<?php $uname_arr=posix_uname(); $hostname=$uname_arr['nodename'];
243+
<?
244244
if ($v_ssl != 'no' ) { ?>
245245
<tr>
246246
<td>

web/templates/admin/list_backup_exclusions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
1717
</td>
1818
<td>
19-
<form action="/bulk/backup/exclusions/" method="post">
19+
<form action="/bulk/backup/exclusions/" method="post" id="objects">
2020
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
2121
<div class="l-select">
2222
<select name="" id="">

web/templates/admin/list_dns.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<?=__('sort by');?>: <span><b><?=__('Date')?></b></span> <i class="l-icon-down-arrow media-top"></i>
2828
</td>
2929
<td>
30-
<form action="/bulk/dns/" method="post">
30+
<form action="/bulk/dns/" method="post" id="objects">
3131
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
3232
<div class="l-select">
3333
<select name="action" id="">
@@ -65,7 +65,7 @@
6565
}
6666
?>
6767

68-
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>"
68+
<div class="l-unit <? if($status == 'suspended') echo ' l-unit--suspended'; if($_SESSION['favourites']['DNS'][$key] == 1) echo ' l-unit--starred'; ?>" v_unit_id="<?=$key?>"
6969
v_section="dns" sort-ip="<?=str_replace('.', '', $data[$key]['IP'])?>" sort-date="<?=strtotime($data[$key]['DATE'].' '.$data[$key]['TIME'])?>" sort-name="<?=$key?>"
7070
sort-expire="<?=strtotime($data[$key]['EXP'])?>" sort-records="<?=(int)$data[$key]['RECORDS']?>" sort-star="<?if($_SESSION['favourites']['DNS'][$key] == 1) echo '1'; else echo '0';?>">
7171
<div class="l-unit-toolbar clearfix">

web/templates/admin/list_dns_rec.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
1717
</td>
1818
<td>
19-
<form action="/bulk/dns/" method="post">
19+
<form action="/bulk/dns/" method="post" id="objects">
2020
<input type="hidden" name="domain" value="<?=htmlentities($_GET['domain'])?>" />
2121
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
2222
<div class="l-select">

web/templates/admin/list_firewall.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<?=__('sort by');?>: <span><b><?=__('Action')?></b></span> <i class="l-icon-down-arrow media-top"></i>
3333
</td>
3434
<td>
35-
<form action="/bulk/firewall/" method="post">
35+
<form action="/bulk/firewall/" method="post" id="objects">
3636
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
3737
<div class="l-select">
3838
<select name="action" id="">

web/templates/admin/list_firewall_banlist.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
1818
</td>
1919
<td>
20-
<form action="/bulk/firewall/banlist/" method="post">
20+
<form action="/bulk/firewall/banlist/" method="post" id="objects">
2121
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
2222
<div class="l-select">
2323
<select name="action" id="">

web/templates/admin/list_updates.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
2323
</td>
2424
<td>
25-
<form action="/bulk/vesta/" method="post">
25+
<form action="/bulk/vesta/" method="post" id="objects">
2626
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
2727
<div class="l-select">
2828
<select name="action" id="">

0 commit comments

Comments
 (0)