Plugin Directory

Changeset 3244832


Ignore:
Timestamp:
02/22/2025 10:40:30 AM (13 months ago)
Author:
successmedia
Message:

Fix PHP 8 Compatibility

Location:
hitmouse/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • hitmouse/trunk/hitmouse.php

    r3217613 r3244832  
    77 * Plugin URI:        https://hitmouse.pro
    88 * Description:       Link Shortener, Link Masker, and Click Tracker for Affiliate- and other Links.
    9  * Version:           1.2.4
     9 * Version:           1.2.5
    1010 * Requires at least: 6.2
    1111 * Requires PHP:      7.4
     
    2828
    2929// Definiere Konstante für die Plugin-Version, um Änderungen und Updates zu verfolgen..
    30 define( 'HITMOUSE_VERSION', '1.2.4' );
     30define( 'HITMOUSE_VERSION', '1.2.5' );
    3131// Definiere den Namen des Plugins für Text-Domains und eindeutige Kennung
    3232define( 'HITMOUSE_NAME', 'hitmouse' );
  • hitmouse/trunk/includes/class-htms-admin-controller.php

    r3217613 r3244832  
    1313use hitmouse\helpers\HTMS_Settings_Helper;
    1414use hitmouse\db\{HTMS_Link_model, HTMS_Category_Model};
    15 use hitmouse\db\pro\HTMS_UTM_Model;
    16 use hitmouse\includes\HTMS_Word_linker;
    17 use hitmouse\includes\HTMS_Help_System;
    1815
    1916if ( ! defined( 'ABSPATH' ) ) {
     
    129126            'hitmouse_edit_link',
    130127            'display_edit_link_form',
    131             null
     128            ''
    132129        );
    133130        $this->add_menu_entry(
     
    136133            'hitmouse_add_category',
    137134            'display_add_category_form',
    138             null
     135            ''
    139136        );
    140137        $this->add_menu_entry(
     
    143140            'hitmouse_edit_category',
    144141            'display_edit_category_form',
    145             null
     142            ''
    146143        );
    147144        $this->add_menu_entry(
     
    154151        do_action( 'hitmouse_add_pro_menu_items', 'hitmouse_links' );
    155152
    156         $this->add_menu_entry( esc_html__( 'Settings', 'hitmouse' ), esc_html__( 'Settings', 'hitmouse' ), 'hitmouse_settings', null );
     153        $this->add_menu_entry( esc_html__( 'Settings', 'hitmouse' ), esc_html__( 'Settings', 'hitmouse' ), 'hitmouse_settings', '' );
    157154
    158155        $this->show_pro_menu_item();
  • hitmouse/trunk/readme.txt

    r3239256 r3244832  
    55Tested up to: 6.7.2
    66Requires PHP: 7.4
    7 Stable tag: 1.2.4
     7Stable tag: 1.2.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    7979== Changelog ==
    8080
     81= 1.2.5 (February 22, 2025) =
     82* FIX: PHP 8 compatibility
     83
    8184= 1.2.4 (January 06, 2025) =
    8285* New: Category Filter in Links
Note: See TracChangeset for help on using the changeset viewer.