Changeset 3455505
- Timestamp:
- 02/06/2026 03:39:58 PM (7 weeks ago)
- Location:
- ilovepdf
- Files:
-
- 8 edited
- 1 copied
-
tags/3.0.1 (copied) (copied from ilovepdf/trunk)
-
tags/3.0.1/README.txt (modified) (3 diffs)
-
tags/3.0.1/admin/Account/User_Data.php (modified) (1 diff)
-
tags/3.0.1/admin/Submenu_Page.php (modified) (2 diffs)
-
tags/3.0.1/ilove-pdf.php (modified) (2 diffs)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/Account/User_Data.php (modified) (1 diff)
-
trunk/admin/Submenu_Page.php (modified) (2 diffs)
-
trunk/ilove-pdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ilovepdf/tags/3.0.1/README.txt
r3449674 r3455505 1 1 === PDF Compressor & Watermark - iLovePDF === 2 2 Plugin Name: Image Compressor & Optimizer - iLovePDF 3 Version: 3.0. 03 Version: 3.0.1 4 4 Author: iLovePDF 5 5 Author URI: https://www.ilovepdf.com/ … … 8 8 Requires at least: 5.3 9 9 Tested up to: 6.9 10 Stable tag: 3.0. 010 Stable tag: 3.0.1 11 11 Requires PHP: 7.4 12 12 License: GPLv2 or later … … 85 85 86 86 == Changelog == 87 88 = 3.0.1 = 89 Fixed 90 * Capabilities to acces Media sections: Library, Add Media File, iLovePDF 87 91 88 92 = 3.0.0 = -
ilovepdf/tags/3.0.1/admin/Account/User_Data.php
r3449674 r3455505 412 412 */ 413 413 public static function get_user_data() { 414 if ( ! ( current_user_can( ' manage_options' ) ) ) {414 if ( ! ( current_user_can( 'upload_files' ) ) ) { 415 415 Admin_Notice::add_notice( 416 416 _x( 'You do not have permission to edit these settings', 'Error message, user without permissions.', 'ilove-pdf' ), 417 417 'error', 418 418 ); 419 419 420 420 wp_safe_redirect( wp_get_referer() ); 421 421 exit; -
ilovepdf/tags/3.0.1/admin/Submenu_Page.php
r3449674 r3455505 128 128 'iLovePDF', 129 129 'iLovePDF', 130 ' manage_options',130 'upload_files', 131 131 self::$media_slug, 132 132 array( … … 148 148 */ 149 149 public static function maybe_process_media_bulk_actions() { 150 if ( ! current_user_can( ' manage_options' ) ) {150 if ( ! current_user_can( 'upload_files' ) ) { 151 151 return; 152 152 } -
ilovepdf/tags/3.0.1/ilove-pdf.php
r3449674 r3455505 11 11 * Plugin URI: https://iloveapi.com/ 12 12 * 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. 013 * Version: 3.0.1 14 14 * Requires at least: 5.3 15 15 * Requires PHP: 7.4 … … 41 41 register_deactivation_hook( __FILE__, array( Deactivator::class, 'deactivate' ) ); 42 42 43 new Ilove_Pdf_Plugin( '3.0. 0', plugin_basename( __FILE__ ) );43 new Ilove_Pdf_Plugin( '3.0.1', plugin_basename( __FILE__ ) ); -
ilovepdf/trunk/README.txt
r3449674 r3455505 1 1 === PDF Compressor & Watermark - iLovePDF === 2 2 Plugin Name: Image Compressor & Optimizer - iLovePDF 3 Version: 3.0. 03 Version: 3.0.1 4 4 Author: iLovePDF 5 5 Author URI: https://www.ilovepdf.com/ … … 8 8 Requires at least: 5.3 9 9 Tested up to: 6.9 10 Stable tag: 3.0. 010 Stable tag: 3.0.1 11 11 Requires PHP: 7.4 12 12 License: GPLv2 or later … … 85 85 86 86 == Changelog == 87 88 = 3.0.1 = 89 Fixed 90 * Capabilities to acces Media sections: Library, Add Media File, iLovePDF 87 91 88 92 = 3.0.0 = -
ilovepdf/trunk/admin/Account/User_Data.php
r3449674 r3455505 412 412 */ 413 413 public static function get_user_data() { 414 if ( ! ( current_user_can( ' manage_options' ) ) ) {414 if ( ! ( current_user_can( 'upload_files' ) ) ) { 415 415 Admin_Notice::add_notice( 416 416 _x( 'You do not have permission to edit these settings', 'Error message, user without permissions.', 'ilove-pdf' ), 417 417 'error', 418 418 ); 419 419 420 420 wp_safe_redirect( wp_get_referer() ); 421 421 exit; -
ilovepdf/trunk/admin/Submenu_Page.php
r3449674 r3455505 128 128 'iLovePDF', 129 129 'iLovePDF', 130 ' manage_options',130 'upload_files', 131 131 self::$media_slug, 132 132 array( … … 148 148 */ 149 149 public static function maybe_process_media_bulk_actions() { 150 if ( ! current_user_can( ' manage_options' ) ) {150 if ( ! current_user_can( 'upload_files' ) ) { 151 151 return; 152 152 } -
ilovepdf/trunk/ilove-pdf.php
r3449674 r3455505 11 11 * Plugin URI: https://iloveapi.com/ 12 12 * 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. 013 * Version: 3.0.1 14 14 * Requires at least: 5.3 15 15 * Requires PHP: 7.4 … … 41 41 register_deactivation_hook( __FILE__, array( Deactivator::class, 'deactivate' ) ); 42 42 43 new Ilove_Pdf_Plugin( '3.0. 0', plugin_basename( __FILE__ ) );43 new Ilove_Pdf_Plugin( '3.0.1', plugin_basename( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.