Plugin Directory

Changeset 3239152


Ignore:
Timestamp:
02/12/2025 07:21:40 AM (13 months ago)
Author:
firebird75
Message:

Update

Location:
wats
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wats/tags/1.0.65/readme.txt

    r3187078 r3239152  
    22Contributors: Olivier
    33Donate link: http://www.ticket-system.net/
    4 Tags: support, ticket, helpdesk, ticket system, support system
    5 License : GPL v3
     4Tags: support, ticket, helpdesk, ticket system, contact, case, CRM, help, support system, system, support ticket, ticketing system
    65Requires at least : 4.0
    7 Tested up to: 6.7
     6Tested up to: 6.7.2
    87Stable tag: 1.0.65
    98
     
    161160== Changelog ==
    162161
    163 = V1.0.65 (12/11/2023) =
    164 + added Wordpress 5.9-6.4 compatibility
     162= V1.0.65 (12/02/2025) =
     163+ added Wordpress 5.9-6.7 compatibility
    165164+ added a creation date filter on frontend ticket listing
    166165+ modified date format in frontend ticket listing to follow WordPress date format option value
    167166+ added a type "integer" for custom field
     167+ fixed an issue with translation loading
    168168
    169169= V1.0.64 (13/08/2021) =
  • wats/tags/1.0.65/wats.php

    r2994629 r3239152  
    1313/*
    14141/ Release history :
    15 - V1.0.65 (12/11/2023) :
    16 + added Wordpress 5.9-6.4 compatibility
     15- V1.0.65 (12/02/2025) :
     16+ added Wordpress 5.9-6.7 compatibility
    1717+ added a creation date filter on frontend ticket listing
    1818+ modified date format in frontend ticket listing to follow WordPress date format option value
    1919+ added a type "integer" for custom field
     20+ fixed an issue with translation loading
    2021- V1.0.64 (13/08/2021) :
    2122+ fixed an interworking issue with Elementor Pro
     
    503504function wats_init()
    504505{
     506   
     507    if (function_exists('load_plugin_textdomain'))
     508    {
     509        $plugin_dir = basename(dirname(__FILE__));
     510        load_plugin_textdomain('WATS','wp-content/plugins/'.$plugin_dir.'/languages',$plugin_dir.'/languages');
     511    }
     512   
     513    wats_load_settings();
     514    wats_translate_global_vars();
    505515    wats_register_taxonomy();
     516   
     517    add_action('admin_menu','wats_add_admin_page');
    506518
    507519    return;
     
    517529{
    518530
    519     if (function_exists('load_plugin_textdomain'))
    520     {
    521         $plugin_dir = basename(dirname(__FILE__));
    522         load_plugin_textdomain('WATS','wp-content/plugins/'.$plugin_dir.'/languages',$plugin_dir.'/languages');
    523     }
    524     wats_load_settings();
    525    
    526     wats_translate_global_vars();
    527 
    528     add_action('admin_menu','wats_add_admin_page');
    529    
    530531    return;
    531532}
  • wats/trunk/readme.txt

    r3187078 r3239152  
    22Contributors: Olivier
    33Donate link: http://www.ticket-system.net/
    4 Tags: support, ticket, helpdesk, ticket system, support system
    5 License : GPL v3
     4Tags: support, ticket, helpdesk, ticket system, contact, case, CRM, help, support system, system, support ticket, ticketing system
    65Requires at least : 4.0
    7 Tested up to: 6.7
     6Tested up to: 6.7.2
    87Stable tag: 1.0.65
    98
     
    161160== Changelog ==
    162161
    163 = V1.0.65 (12/11/2023) =
    164 + added Wordpress 5.9-6.4 compatibility
     162= V1.0.65 (12/02/2025) =
     163+ added Wordpress 5.9-6.7 compatibility
    165164+ added a creation date filter on frontend ticket listing
    166165+ modified date format in frontend ticket listing to follow WordPress date format option value
    167166+ added a type "integer" for custom field
     167+ fixed an issue with translation loading
    168168
    169169= V1.0.64 (13/08/2021) =
  • wats/trunk/wats.php

    r2994629 r3239152  
    1313/*
    14141/ Release history :
    15 - V1.0.65 (12/11/2023) :
    16 + added Wordpress 5.9-6.4 compatibility
     15- V1.0.65 (12/02/2025) :
     16+ added Wordpress 5.9-6.7 compatibility
    1717+ added a creation date filter on frontend ticket listing
    1818+ modified date format in frontend ticket listing to follow WordPress date format option value
    1919+ added a type "integer" for custom field
     20+ fixed an issue with translation loading
    2021- V1.0.64 (13/08/2021) :
    2122+ fixed an interworking issue with Elementor Pro
     
    503504function wats_init()
    504505{
     506   
     507    if (function_exists('load_plugin_textdomain'))
     508    {
     509        $plugin_dir = basename(dirname(__FILE__));
     510        load_plugin_textdomain('WATS','wp-content/plugins/'.$plugin_dir.'/languages',$plugin_dir.'/languages');
     511    }
     512   
     513    wats_load_settings();
     514    wats_translate_global_vars();
    505515    wats_register_taxonomy();
     516   
     517    add_action('admin_menu','wats_add_admin_page');
    506518
    507519    return;
     
    517529{
    518530
    519     if (function_exists('load_plugin_textdomain'))
    520     {
    521         $plugin_dir = basename(dirname(__FILE__));
    522         load_plugin_textdomain('WATS','wp-content/plugins/'.$plugin_dir.'/languages',$plugin_dir.'/languages');
    523     }
    524     wats_load_settings();
    525    
    526     wats_translate_global_vars();
    527 
    528     add_action('admin_menu','wats_add_admin_page');
    529    
    530531    return;
    531532}
Note: See TracChangeset for help on using the changeset viewer.