Changeset 3373311
- Timestamp:
- 10/06/2025 01:47:52 AM (6 months ago)
- Location:
- ultimate-watermark
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from ultimate-watermark/trunk)
-
tags/1.1.1/includes/Admin/Ajax.php (modified) (1 diff)
-
tags/1.1.1/includes/Hooks.php (modified) (1 diff)
-
tags/1.1.1/readme.txt (modified) (2 diffs)
-
tags/1.1.1/ultimate-watermark.php (modified) (2 diffs)
-
trunk/includes/Admin/Ajax.php (modified) (1 diff)
-
trunk/includes/Hooks.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ultimate-watermark.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-watermark/tags/1.1.1/includes/Admin/Ajax.php
r2833047 r3373311 15 15 public function watermark_action_ajax() 16 16 { 17 if ( ! current_user_can( 'edit_posts' ) ) { 18 wp_die( __( 'Unauthorized user', 'ultimate-watermark' ) ); 19 } 17 20 //Need to modify the code before go to live 18 21 if ($_POST['ulwm-action'] === "apply_video_watermark") { -
ultimate-watermark/tags/1.1.1/includes/Hooks.php
r2860165 r3373311 4 4 class Hooks 5 5 { 6 /** 7 * Whether the current request is from admin area 8 * 9 * @var bool 10 */ 11 private $is_admin; 12 6 13 public function __construct() 7 14 { -
ultimate-watermark/tags/1.1.1/readme.txt
r3332891 r3373311 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 227 227 228 228 == Changelog == 229 229 = 1.1.1- 2025/10/06 = 230 * Fixed - capability check issue fixed 231 * Fixed - PHP Deprication warning fixed 230 232 = 1.1 - 2025/07/23 = 231 233 * Fixed - WordPress 6.9 compatibility verified -
ultimate-watermark/tags/1.1.1/ultimate-watermark.php
r3332891 r3373311 3 3 Plugin Name: Ultimate Watermark 4 4 Description: Image Watermark plugin for WordPress media. 5 Version: 1.1 5 Version: 1.1.1 6 6 Author: MantraBrain 7 7 Author URI: https://mantrabrain.com/ … … 30 30 31 31 define('ULTIMATE_WATERMARK_FILE', __FILE__); 32 define('ULTIMATE_WATERMARK_VERSION', '1.1 ');32 define('ULTIMATE_WATERMARK_VERSION', '1.1.1'); 33 33 define('ULTIMATE_WATERMARK_URI', plugins_url('', ULTIMATE_WATERMARK_FILE)); 34 34 define('ULTIMATE_WATERMARK_DIR', plugin_dir_path(ULTIMATE_WATERMARK_FILE)); -
ultimate-watermark/trunk/includes/Admin/Ajax.php
r2833047 r3373311 15 15 public function watermark_action_ajax() 16 16 { 17 if ( ! current_user_can( 'edit_posts' ) ) { 18 wp_die( __( 'Unauthorized user', 'ultimate-watermark' ) ); 19 } 17 20 //Need to modify the code before go to live 18 21 if ($_POST['ulwm-action'] === "apply_video_watermark") { -
ultimate-watermark/trunk/includes/Hooks.php
r2860165 r3373311 4 4 class Hooks 5 5 { 6 /** 7 * Whether the current request is from admin area 8 * 9 * @var bool 10 */ 11 private $is_admin; 12 6 13 public function __construct() 7 14 { -
ultimate-watermark/trunk/readme.txt
r3332891 r3373311 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 227 227 228 228 == Changelog == 229 229 = 1.1.1- 2025/10/06 = 230 * Fixed - capability check issue fixed 231 * Fixed - PHP Deprication warning fixed 230 232 = 1.1 - 2025/07/23 = 231 233 * Fixed - WordPress 6.9 compatibility verified -
ultimate-watermark/trunk/ultimate-watermark.php
r3332891 r3373311 3 3 Plugin Name: Ultimate Watermark 4 4 Description: Image Watermark plugin for WordPress media. 5 Version: 1.1 5 Version: 1.1.1 6 6 Author: MantraBrain 7 7 Author URI: https://mantrabrain.com/ … … 30 30 31 31 define('ULTIMATE_WATERMARK_FILE', __FILE__); 32 define('ULTIMATE_WATERMARK_VERSION', '1.1 ');32 define('ULTIMATE_WATERMARK_VERSION', '1.1.1'); 33 33 define('ULTIMATE_WATERMARK_URI', plugins_url('', ULTIMATE_WATERMARK_FILE)); 34 34 define('ULTIMATE_WATERMARK_DIR', plugin_dir_path(ULTIMATE_WATERMARK_FILE));
Note: See TracChangeset
for help on using the changeset viewer.