Hi,
I am getting issue when we upgrade from 4.3.0 to 4.3.1.
On upgrade when we visit location <thebuggenie.url>/upgrade at "Almost done" step, "Perform Upgrade" button is disabled when we try to enter password.
I tried to debug and I guess its due to following code :
<input id="upgrade_password_admin" name="admin_password" class="adminpassword" placeholder="Enter a new admin password here" onkeyup="if ($(this).getValue().length >= 5 && $('confirm_backup').checked) { $('start_upgrade').enable(); } else { $('start_upgrade').disable(); }">
$('confirm_backup').checked always returns false
Even if i enter password more than 5 character it still remains disabled.