From b3074197ba14a25c3ebafdf8f30dded34445dffe Mon Sep 17 00:00:00 2001 From: lucha <lucha@paranoici.org> Date: Sat, 4 Jul 2020 13:22:09 -0700 Subject: [PATCH] removed other non-patches patches files --- ...rm-uses-post-and-not-get-methods-now.patch | 30 ------------------- ...n-of-the-disable-notification-plugin.patch | 27 ----------------- 2 files changed, 57 deletions(-) delete mode 100644 patches/0208-Activation-form-uses-post-and-not-get-methods-now.patch delete mode 100644 patches/0213-Description-of-the-disable-notification-plugin.patch diff --git a/patches/0208-Activation-form-uses-post-and-not-get-methods-now.patch b/patches/0208-Activation-form-uses-post-and-not-get-methods-now.patch deleted file mode 100644 index 57db886d..00000000 --- a/patches/0208-Activation-form-uses-post-and-not-get-methods-now.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 26a780bdb0ce827c194d2b38cdd9bfceecd029de Mon Sep 17 00:00:00 2001 -From: lucha <lucha@paranoici.org> -Date: Sun, 11 Nov 2018 11:39:39 -0800 -Subject: [PATCH 208/229] Activation form uses post and not get methods now - -Should fix issue #20 ---- - wp-content/themes/noblogs-home/registration/activate.php | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/wp-content/themes/noblogs-home/registration/activate.php b/wp-content/themes/noblogs-home/registration/activate.php -index d2eddc4a..d3d61214 100644 ---- a/wp-content/themes/noblogs-home/registration/activate.php -+++ b/wp-content/themes/noblogs-home/registration/activate.php -@@ -29,10 +29,10 @@ - - <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p> - -- <form action="" method="get" class="standard-form" id="activation-form"> -+ <form action="" method="post" class="standard-form" id="activation-form"> - - <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label> -- <input type="text" name="key" id="key" value="" /> -+ <input type="text" name="key" id="key" value="<?php echo esc_attr( bp_get_current_activation_key() ); ?>" /> - - <p class="submit"> - <input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ); ?>" /> --- -2.17.1 - diff --git a/patches/0213-Description-of-the-disable-notification-plugin.patch b/patches/0213-Description-of-the-disable-notification-plugin.patch deleted file mode 100644 index 07a2a182..00000000 --- a/patches/0213-Description-of-the-disable-notification-plugin.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 81521d796c13f4305aa42e60e9d1909ce3e1d2f0 Mon Sep 17 00:00:00 2001 -From: lucha <lucha@paranoici.org> -Date: Sun, 30 Dec 2018 13:52:14 -0800 -Subject: [PATCH 213/229] Description of the disable notification plugin - ---- - wp-content/mu-plugins/ai-remove-notification.php | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/wp-content/mu-plugins/ai-remove-notification.php b/wp-content/mu-plugins/ai-remove-notification.php -index 978f2136..b71d6836 100644 ---- a/wp-content/mu-plugins/ai-remove-notification.php -+++ b/wp-content/mu-plugins/ai-remove-notification.php -@@ -1,3 +1,10 @@ - <?php -+/* -+ Plugin Name: A/I - Remove password change notification -+ Description: Disables email notification of password changes -+ Version: 0.1 -+ Author: Autistici/Inventati -+ Author URI: https://autistici.org -+*/ - function wp_password_change_notification() {} - ?> --- -2.17.1 - -- GitLab