From 03a50a87dcfd1181794e804ee462f3280c4aa691 Mon Sep 17 00:00:00 2001 From: Vladimir Druzenko Date: Fri, 29 Aug 2025 04:17:33 +0300 Subject: www/phpvirtualbox-72: Update 7.1-1 => 7.2-1 Changelog: https://github.com/phpvirtualbox/phpvirtualbox/releases/tag/7.2-1 PR: 289019 --- .../patch-panes_mediumEncryptionPasswords.html | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html (limited to 'www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html') 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 @@ + Status + ID + Password ++ Clear on suspend + + + +@@ -37,9 +38,12 @@ function vboxMediumEncryptionPasswordAdd + .append($('') + .append( + valid ? '*****' : +- $('').attr({'type':'password','style':'width:95%'}).addClass('vboxText') ++ $('').attr({'type':'password','style':'width:90%'}).addClass('vboxText') + ) + ) ++ .append($('') ++ .append($('').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' + }); + + } -- cgit v1.2.3