diff options
author | Vladimir Druzenko <vvd@FreeBSD.org> | 2025-08-29 04:17:33 +0300 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2025-08-29 04:17:33 +0300 |
commit | 03a50a87dcfd1181794e804ee462f3280c4aa691 (patch) | |
tree | 6bd7fe0f74e491e232354346174ade1327d81d3f /www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html | |
parent | www/phpvirtualbox-72: Repocopy from www/phpvirtualbox-71 (diff) |
www/phpvirtualbox-72: Update 7.1-1 => 7.2-1
Changelog:
https://github.com/phpvirtualbox/phpvirtualbox/releases/tag/7.2-1
PR: 289019
Diffstat (limited to 'www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html')
-rw-r--r-- | www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html b/www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html new file mode 100644 index 000000000000..3e8a7c62dfb7 --- /dev/null +++ b/www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html @@ -0,0 +1,34 @@ +--- 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' + }); + + } |