SEO Redirection Plugin - Version 8.8

Version Description

  • Important security fixes.
Download this release

Release Info

Developer osamaesh
Plugin Icon 128x128 SEO Redirection Plugin
Version 8.8
Comparing to
See all releases

Code changes from version 8.7 to 8.8

Files changed (3) hide show
  1. custom/functions.php +12 -0
  2. readme.txt +4 -1
  3. seo-redirection.php +1 -1
custom/functions.php CHANGED
@@ -73,6 +73,12 @@ if(!function_exists("c_clear_redirection_history")) {
73
  function c_clear_redirection_history()
74
  {
75
  global $wpdb,$table_prefix;
 
 
 
 
 
 
76
  $table_name = $table_prefix . 'WP_SEO_Redirection_LOG';
77
  $wpdb->query(" TRUNCATE TABLE $table_name ");
78
 
@@ -84,6 +90,12 @@ if(!function_exists("c_clear_all_404")) {
84
  function c_clear_all_404()
85
  {
86
  global $wpdb,$table_prefix;
 
 
 
 
 
 
87
  $table_name = $table_prefix . 'WP_SEO_404_links';
88
  $wpdb->query(" TRUNCATE TABLE $table_name ");
89
 
73
  function c_clear_redirection_history()
74
  {
75
  global $wpdb,$table_prefix;
76
+
77
+ if (!current_user_can('manage_options')){
78
+ return;
79
+ }
80
+
81
+
82
  $table_name = $table_prefix . 'WP_SEO_Redirection_LOG';
83
  $wpdb->query(" TRUNCATE TABLE $table_name ");
84
 
90
  function c_clear_all_404()
91
  {
92
  global $wpdb,$table_prefix;
93
+
94
+ if (!current_user_can('manage_options')){
95
+ return;
96
+ }
97
+
98
+
99
  $table_name = $table_prefix . 'WP_SEO_404_links';
100
  $wpdb->query(" TRUNCATE TABLE $table_name ");
101
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wp-buy, osama.esh
3
  Tags: post, admin, seo, pages, manage, 301, 404, soft 404, redirect, permalink, redirection, redirection, https, automatic redirection, htaccess, ssl, https redirection, ssl certificate, secure page, secure, force ssl, force https, seo redirection, post redirect, 404 to 301
4
  Requires at least: 4.1
5
  Tested up to: 6.0
6
- Stable tag: 8.7
7
 
8
  SEO Redirection is a powerful redirect manager to manage 301 redirects without requiring knowledge of Apache .htaccess files.
9
 
@@ -75,6 +75,9 @@ Yes, here is the plugin full knowledge base http://www.clogica.com/kb/
75
 
76
  == Changelog ==
77
 
 
 
 
78
  = 8.7 =
79
  * fix show more link on network sites
80
 
3
  Tags: post, admin, seo, pages, manage, 301, 404, soft 404, redirect, permalink, redirection, redirection, https, automatic redirection, htaccess, ssl, https redirection, ssl certificate, secure page, secure, force ssl, force https, seo redirection, post redirect, 404 to 301
4
  Requires at least: 4.1
5
  Tested up to: 6.0
6
+ Stable tag: 8.8
7
 
8
  SEO Redirection is a powerful redirect manager to manage 301 redirects without requiring knowledge of Apache .htaccess files.
9
 
75
 
76
  == Changelog ==
77
 
78
+ = 8.8 =
79
+ * Important security fixes.
80
+
81
  = 8.7 =
82
  * fix show more link on network sites
83
 
seo-redirection.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEO Redirection
4
  Plugin URI: https://www.wp-buy.com/product/seo-redirection-premium-wordpress-plugin/
5
  Description: By this plugin you can manage all your website redirection types easily.
6
  Author: wp-buy
7
- Version: 8.7
8
  Author URI: https://www.wp-buy.com
9
  Text Domain: seo-redirection
10
  */
4
  Plugin URI: https://www.wp-buy.com/product/seo-redirection-premium-wordpress-plugin/
5
  Description: By this plugin you can manage all your website redirection types easily.
6
  Author: wp-buy
7
+ Version: 8.8
8
  Author URI: https://www.wp-buy.com
9
  Text Domain: seo-redirection
10
  */