Plugin Directory

Changeset 3068377


Ignore:
Timestamp:
04/10/2024 10:54:28 AM (2 years ago)
Author:
dejanmarkovic
Message:

4.1.11 - 2024-04-10

  1. improved uninstall method
if ( ! current_user_can( 'activate_plugins' )
( defined( 'WP_UNINSTALL_PLUGIN' ) && WP_UNINSTALL_PLUGIN !== plugin_basename( FILE ) ) ) {

return;

}


  1. commented out the check_admin_referer( 'bulk-plugins' );
Location:
social-web-suite/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • social-web-suite/trunk/includes/libs/class-socialwebsuite-setup.php

    r2096738 r3068377  
    9090     */
    9191    public static function uninstall() {
    92         if ( ! current_user_can( 'activate_plugins' ) || WP_UNINSTALL_PLUGIN !== SWS_PLUGIN_PATH ) {
     92        if ( ! current_user_can( 'activate_plugins' ) || ( defined( 'WP_UNINSTALL_PLUGIN' ) && WP_UNINSTALL_PLUGIN !== plugin_basename( __FILE__ ) ) ) {
    9393            return;
    9494        }
    95 
    96         check_admin_referer( 'bulk-plugins' );
    97 
     95       
     96        //check_admin_referer( 'bulk-plugins' );
     97       
    9898        // uninstall
    9999        SocialWebSuite::delete_settings();
  • social-web-suite/trunk/readme.md

    r3044822 r3068377  
    229229
    230230== Change Log ==
     231== 4.1.11 - 2024-04-03
     232- improved uninstall method
     233- commented out the check_admin_referer()
     234
    231235== 4.1.10 - 2024-04-03
    232236version bump
  • social-web-suite/trunk/social-web-suite.php

    r3044822 r3068377  
    55 * Description: Manage all your social media accounts from one place. Automate, schedule & publish your posts/custom
    66 * post types/pages to major social networks. Social Web Suite is social media scheduler.
    7  * Version: 4.1.10
     7 * Version: 4.1.11
    88 * Author: hypestudio,nytogroup,dejanmarkovic,tinat
    99 * Author URI: https://hypestudio.org/
Note: See TracChangeset for help on using the changeset viewer.