Plugin Directory

Changeset 3373311


Ignore:
Timestamp:
10/06/2025 01:47:52 AM (6 months ago)
Author:
mantrabrain
Message:

Update to version 1.1.1 from GitHub

Location:
ultimate-watermark
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ultimate-watermark/tags/1.1.1/includes/Admin/Ajax.php

    r2833047 r3373311  
    1515    public function watermark_action_ajax()
    1616    {
     17        if ( ! current_user_can( 'edit_posts' ) ) {
     18            wp_die( __( 'Unauthorized user', 'ultimate-watermark' ) );
     19        }
    1720        //Need to modify the code before go to live
    1821        if ($_POST['ulwm-action'] === "apply_video_watermark") {
  • ultimate-watermark/tags/1.1.1/includes/Hooks.php

    r2860165 r3373311  
    44class Hooks
    55{
     6    /**
     7     * Whether the current request is from admin area
     8     *
     9     * @var bool
     10     */
     11    private $is_admin;
     12
    613    public function __construct()
    714    {
  • ultimate-watermark/tags/1.1.1/readme.txt

    r3332891 r3373311  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    227227
    228228== Changelog ==
    229 
     229= 1.1.1- 2025/10/06 =
     230* Fixed - capability check issue fixed
     231* Fixed - PHP Deprication warning fixed
    230232= 1.1 - 2025/07/23 =
    231233* Fixed - WordPress 6.9 compatibility verified
  • ultimate-watermark/tags/1.1.1/ultimate-watermark.php

    r3332891 r3373311  
    33Plugin Name: Ultimate Watermark
    44Description: Image Watermark plugin for WordPress media.
    5 Version: 1.1
     5Version: 1.1.1
    66Author: MantraBrain
    77Author URI: https://mantrabrain.com/
     
    3030
    3131define('ULTIMATE_WATERMARK_FILE', __FILE__);
    32 define('ULTIMATE_WATERMARK_VERSION', '1.1');
     32define('ULTIMATE_WATERMARK_VERSION', '1.1.1');
    3333define('ULTIMATE_WATERMARK_URI', plugins_url('', ULTIMATE_WATERMARK_FILE));
    3434define('ULTIMATE_WATERMARK_DIR', plugin_dir_path(ULTIMATE_WATERMARK_FILE));
  • ultimate-watermark/trunk/includes/Admin/Ajax.php

    r2833047 r3373311  
    1515    public function watermark_action_ajax()
    1616    {
     17        if ( ! current_user_can( 'edit_posts' ) ) {
     18            wp_die( __( 'Unauthorized user', 'ultimate-watermark' ) );
     19        }
    1720        //Need to modify the code before go to live
    1821        if ($_POST['ulwm-action'] === "apply_video_watermark") {
  • ultimate-watermark/trunk/includes/Hooks.php

    r2860165 r3373311  
    44class Hooks
    55{
     6    /**
     7     * Whether the current request is from admin area
     8     *
     9     * @var bool
     10     */
     11    private $is_admin;
     12
    613    public function __construct()
    714    {
  • ultimate-watermark/trunk/readme.txt

    r3332891 r3373311  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.1
     7Stable tag: 1.1.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    227227
    228228== Changelog ==
    229 
     229= 1.1.1- 2025/10/06 =
     230* Fixed - capability check issue fixed
     231* Fixed - PHP Deprication warning fixed
    230232= 1.1 - 2025/07/23 =
    231233* Fixed - WordPress 6.9 compatibility verified
  • ultimate-watermark/trunk/ultimate-watermark.php

    r3332891 r3373311  
    33Plugin Name: Ultimate Watermark
    44Description: Image Watermark plugin for WordPress media.
    5 Version: 1.1
     5Version: 1.1.1
    66Author: MantraBrain
    77Author URI: https://mantrabrain.com/
     
    3030
    3131define('ULTIMATE_WATERMARK_FILE', __FILE__);
    32 define('ULTIMATE_WATERMARK_VERSION', '1.1');
     32define('ULTIMATE_WATERMARK_VERSION', '1.1.1');
    3333define('ULTIMATE_WATERMARK_URI', plugins_url('', ULTIMATE_WATERMARK_FILE));
    3434define('ULTIMATE_WATERMARK_DIR', plugin_dir_path(ULTIMATE_WATERMARK_FILE));
Note: See TracChangeset for help on using the changeset viewer.