diff --git a/admin.settings.load.php b/admin.settings.load.php index b9fb58ed8..f0df48da6 100644 --- a/admin.settings.load.php +++ b/admin.settings.load.php @@ -236,9 +236,15 @@ function LaunchAdminActions(action, option) } else if (action === "admin_action_backup_decrypt") { option = $("#bck_script_decrypt_file").val(); } else if (action === "admin_action_change_salt_key") { - option = aes_encrypt(sanitizeString($("#new_salt_key").val())); + option = prepareExchangedData( + sanitizeString($("#new_salt_key").val()), + "encode", + "" + ); } else if (action === "admin_email_send_backlog") { - $("#email_testing_results").show().html("").attr("class","ui-corner-all ui-state-focus"); + $("#email_testing_results") + .show(). + html("").attr("class","ui-corner-all ui-state-focus"); } else if (action === "admin_action_attachments_cryption") { option = $("input[name=attachments_cryption]:checked").val(); if (option === "" || option === undefined) { diff --git a/find.load.php b/find.load.php index f03da4e3e..d2d72a86c 100644 --- a/find.load.php +++ b/find.load.php @@ -19,11 +19,6 @@