Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager - Version 2.8.8

Version Description

Minor bug fixed

Download this release

Release Info

Developer premiocommit
Plugin Icon wp plugin Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager
Version 2.8.8
Comparing to
See all releases

Code changes from version 2.8.7 to 2.8.8

Files changed (3) hide show
  1. folders.php +2 -2
  2. includes/folders.class.php +4 -7
  3. readme.txt +4 -1
folders.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Folders
4
  * Description: Organize your Media library, Pages, and Posts into folders. You can easily drag and drop items into directories and change the folders tree view.
5
- * Version: 2.8.7
6
  * Author: Premio
7
  * Author URI: https://premio.io/downloads/folders/
8
  * Text Domain: folders
@@ -24,7 +24,7 @@ if(!defined("WCP_FOLDER_URL")) {
24
  define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
25
  }
26
  if(!defined("WCP_FOLDER_VERSION")) {
27
- define('WCP_FOLDER_VERSION', "2.8.7");
28
  }
29
 
30
 
2
  /**
3
  * Plugin Name: Folders
4
  * Description: Organize your Media library, Pages, and Posts into folders. You can easily drag and drop items into directories and change the folders tree view.
5
+ * Version: 2.8.8
6
  * Author: Premio
7
  * Author URI: https://premio.io/downloads/folders/
8
  * Text Domain: folders
24
  define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
25
  }
26
  if(!defined("WCP_FOLDER_VERSION")) {
27
+ define('WCP_FOLDER_VERSION', "2.8.8");
28
  }
29
 
30
 
includes/folders.class.php CHANGED
@@ -1019,20 +1019,17 @@ class WCP_Folders
1019
  $email = filter_input(INPUT_POST, 'email');
1020
  update_option("folder_update_message", 2);
1021
  if ($status == 1) {
1022
- $email = sanitize_email($email);
1023
-
1024
- $apiURL = "https://premioapps.com/premio/signup/index.php?plugin=folders&email=".esc_attr($email);
1025
-
1026
  $apiParams = [
1027
  'plugin' => 'folders',
1028
  'email' => $email,
1029
  ];
1030
 
1031
- // Signup Email for Chaty
1032
- $apiResponse = wp_safe_remote_post($apiURL, ['body' => $apiParams, 'timeout' => 15, 'sslverify' => true]);
1033
 
1034
  if (is_wp_error($apiResponse)) {
1035
- wp_safe_remote_post($apiURL, ['body' => $apiParams, 'timeout' => 15, 'sslverify' => false]);
1036
  }
1037
 
1038
  $response['status'] = 1;
1019
  $email = filter_input(INPUT_POST, 'email');
1020
  update_option("folder_update_message", 2);
1021
  if ($status == 1) {
1022
+ $url = 'https://premioapps.com/premio/signup/email.php';
 
 
 
1023
  $apiParams = [
1024
  'plugin' => 'folders',
1025
  'email' => $email,
1026
  ];
1027
 
1028
+ // Signup Email for Folders
1029
+ $apiResponse = wp_safe_remote_post($url, ['body' => $apiParams, 'timeout' => 15, 'sslverify' => true]);
1030
 
1031
  if (is_wp_error($apiResponse)) {
1032
+ wp_safe_remote_post($url, ['body' => $apiParams, 'timeout' => 15, 'sslverify' => false]);
1033
  }
1034
 
1035
  $response['status'] = 1;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: galdub, tomeraharon, premio
3
  Tags: folder, folders, replace media, pages folders, media library, posts folders, media folders, media replace, file manager, directories, media library folders, media library folder
4
  Requires at least: 3.0.0
5
  Tested up to: 6.1
6
- Stable tag: 2.8.7
7
  Plugin URI: https://premio.io/downloads/folders/
8
 
9
  Folders is a WordPress plugin that will help you quickly create unlimited folders and organize and manage your Media Library files, Pages & Posts in folders
@@ -199,6 +199,9 @@ A live demo for the Folders plugin is available at <a href="https://demo.premio.
199
 
200
  == Changelog ==
201
 
 
 
 
202
  = 2.8.7 =
203
  WordPress 6.1 Folders compatibility adjustments
204
 
3
  Tags: folder, folders, replace media, pages folders, media library, posts folders, media folders, media replace, file manager, directories, media library folders, media library folder
4
  Requires at least: 3.0.0
5
  Tested up to: 6.1
6
+ Stable tag: 2.8.8
7
  Plugin URI: https://premio.io/downloads/folders/
8
 
9
  Folders is a WordPress plugin that will help you quickly create unlimited folders and organize and manage your Media Library files, Pages & Posts in folders
199
 
200
  == Changelog ==
201
 
202
+ = 2.8.8 =
203
+ Minor bug fixed
204
+
205
  = 2.8.7 =
206
  WordPress 6.1 Folders compatibility adjustments
207