mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 02:56:39 -04:00
Forgot to commit this change in previous commit.
PR: 261498
Approved by: portmgr (blanket, fix run)
Fixes: c8ee986410
(PHP 8.2 support - "utf8_encode()")
MFH: 2024Q2
34 lines
1.5 KiB
HTML
34 lines
1.5 KiB
HTML
--- panes/mediumEncryptionPasswords.html.orig 2017-07-27 16:54:58 UTC
|
|
+++ panes/mediumEncryptionPasswords.html
|
|
@@ -15,6 +15,7 @@
|
|
<th class='translate' style='width:1%; text-align:center'>Status</th>
|
|
<th class='translate' style='width:30%; text-align:center'>ID</th>
|
|
<th class='translate'>Password</th>
|
|
+ <th class='translate'>Clear on suspend</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id='vboxMediumEncryptionPasswordList'>
|
|
@@ -37,9 +38,12 @@ function vboxMediumEncryptionPasswordAdd
|
|
.append($('<td />')
|
|
.append(
|
|
valid ? '*****' :
|
|
- $('<input />').attr({'type':'password','style':'width:95%'}).addClass('vboxText')
|
|
+ $('<input />').attr({'type':'password','style':'width:90%'}).addClass('vboxText')
|
|
)
|
|
)
|
|
+ .append($('<td />')
|
|
+ .append($('<input />').attr({'type':'checkbox', 'checked':'checked'}))
|
|
+ )
|
|
.appendTo($('#vboxMediumEncryptionPasswordList'))
|
|
}
|
|
|
|
@@ -55,7 +59,8 @@ function vboxMediumEncryptionPasswordsGe
|
|
continue;
|
|
encryptionPWs.push({
|
|
'id': $(rowlist[i]).data('vboxEncryptionId'),
|
|
- 'password': $(rowlist[i]).find('input').first().val()
|
|
+ 'password': $(rowlist[i]).find('input[type="password"]').first().val(),
|
|
+ 'clearOnSuspend': $(rowlist[i]).find('input[type="checkbox"]').first().is(':checked') ? '1' : '0'
|
|
});
|
|
|
|
}
|