Plugin Directory

Changeset 3455505


Ignore:
Timestamp:
02/06/2026 03:39:58 PM (7 weeks ago)
Author:
ilovepdf
Message:

Update to version 3.0.1 from GitHub

Location:
ilovepdf
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ilovepdf/tags/3.0.1/README.txt

    r3449674 r3455505  
    11=== PDF Compressor & Watermark - iLovePDF ===
    22Plugin Name: Image Compressor & Optimizer - iLovePDF
    3 Version: 3.0.0
     3Version: 3.0.1
    44Author: iLovePDF
    55Author URI: https://www.ilovepdf.com/
     
    88Requires at least: 5.3
    99Tested up to: 6.9
    10 Stable tag: 3.0.0
     10Stable tag: 3.0.1
    1111Requires PHP: 7.4
    1212License: GPLv2 or later
     
    8585
    8686== Changelog ==
     87
     88= 3.0.1 =
     89Fixed
     90* Capabilities to acces Media sections: Library, Add Media File, iLovePDF
    8791
    8892= 3.0.0 =
  • ilovepdf/tags/3.0.1/admin/Account/User_Data.php

    r3449674 r3455505  
    412412     */
    413413    public static function get_user_data() {
    414         if ( ! ( current_user_can( 'manage_options' ) ) ) {
     414        if ( ! ( current_user_can( 'upload_files' ) ) ) {
    415415            Admin_Notice::add_notice(
    416416                _x( 'You do not have permission to edit these settings', 'Error message, user without permissions.', 'ilove-pdf' ),
    417417                'error',
    418418            );
    419 
     419           
    420420            wp_safe_redirect( wp_get_referer() );
    421421            exit;
  • ilovepdf/tags/3.0.1/admin/Submenu_Page.php

    r3449674 r3455505  
    128128            'iLovePDF',
    129129            'iLovePDF',
    130             'manage_options',
     130            'upload_files',
    131131            self::$media_slug,
    132132            array(
     
    148148     */
    149149    public static function maybe_process_media_bulk_actions() {
    150         if ( ! current_user_can( 'manage_options' ) ) {
     150        if ( ! current_user_can( 'upload_files' ) ) {
    151151            return;
    152152        }
  • ilovepdf/tags/3.0.1/ilove-pdf.php

    r3449674 r3455505  
    1111 * Plugin URI:        https://iloveapi.com/
    1212 * Description:       Compress and watermark your PDFs directly in WordPress. Save space, speed up loading, and protect your content all without leaving your site.
    13  * Version:           3.0.0
     13 * Version:           3.0.1
    1414 * Requires at least: 5.3
    1515 * Requires PHP:      7.4
     
    4141register_deactivation_hook( __FILE__, array( Deactivator::class, 'deactivate' ) );
    4242
    43 new Ilove_Pdf_Plugin( '3.0.0', plugin_basename( __FILE__ ) );
     43new Ilove_Pdf_Plugin( '3.0.1', plugin_basename( __FILE__ ) );
  • ilovepdf/trunk/README.txt

    r3449674 r3455505  
    11=== PDF Compressor & Watermark - iLovePDF ===
    22Plugin Name: Image Compressor & Optimizer - iLovePDF
    3 Version: 3.0.0
     3Version: 3.0.1
    44Author: iLovePDF
    55Author URI: https://www.ilovepdf.com/
     
    88Requires at least: 5.3
    99Tested up to: 6.9
    10 Stable tag: 3.0.0
     10Stable tag: 3.0.1
    1111Requires PHP: 7.4
    1212License: GPLv2 or later
     
    8585
    8686== Changelog ==
     87
     88= 3.0.1 =
     89Fixed
     90* Capabilities to acces Media sections: Library, Add Media File, iLovePDF
    8791
    8892= 3.0.0 =
  • ilovepdf/trunk/admin/Account/User_Data.php

    r3449674 r3455505  
    412412     */
    413413    public static function get_user_data() {
    414         if ( ! ( current_user_can( 'manage_options' ) ) ) {
     414        if ( ! ( current_user_can( 'upload_files' ) ) ) {
    415415            Admin_Notice::add_notice(
    416416                _x( 'You do not have permission to edit these settings', 'Error message, user without permissions.', 'ilove-pdf' ),
    417417                'error',
    418418            );
    419 
     419           
    420420            wp_safe_redirect( wp_get_referer() );
    421421            exit;
  • ilovepdf/trunk/admin/Submenu_Page.php

    r3449674 r3455505  
    128128            'iLovePDF',
    129129            'iLovePDF',
    130             'manage_options',
     130            'upload_files',
    131131            self::$media_slug,
    132132            array(
     
    148148     */
    149149    public static function maybe_process_media_bulk_actions() {
    150         if ( ! current_user_can( 'manage_options' ) ) {
     150        if ( ! current_user_can( 'upload_files' ) ) {
    151151            return;
    152152        }
  • ilovepdf/trunk/ilove-pdf.php

    r3449674 r3455505  
    1111 * Plugin URI:        https://iloveapi.com/
    1212 * Description:       Compress and watermark your PDFs directly in WordPress. Save space, speed up loading, and protect your content all without leaving your site.
    13  * Version:           3.0.0
     13 * Version:           3.0.1
    1414 * Requires at least: 5.3
    1515 * Requires PHP:      7.4
     
    4141register_deactivation_hook( __FILE__, array( Deactivator::class, 'deactivate' ) );
    4242
    43 new Ilove_Pdf_Plugin( '3.0.0', plugin_basename( __FILE__ ) );
     43new Ilove_Pdf_Plugin( '3.0.1', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.