Changeset 3239152
- Timestamp:
- 02/12/2025 07:21:40 AM (13 months ago)
- Location:
- wats
- Files:
-
- 4 edited
-
tags/1.0.65/readme.txt (modified) (2 diffs)
-
tags/1.0.65/wats.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wats.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wats/tags/1.0.65/readme.txt
r3187078 r3239152 2 2 Contributors: Olivier 3 3 Donate link: http://www.ticket-system.net/ 4 Tags: support, ticket, helpdesk, ticket system, support system 5 License : GPL v3 4 Tags: support, ticket, helpdesk, ticket system, contact, case, CRM, help, support system, system, support ticket, ticketing system 6 5 Requires at least : 4.0 7 Tested up to: 6.7 6 Tested up to: 6.7.2 8 7 Stable tag: 1.0.65 9 8 … … 161 160 == Changelog == 162 161 163 = V1.0.65 (12/ 11/2023) =164 + added Wordpress 5.9-6. 4compatibility162 = V1.0.65 (12/02/2025) = 163 + added Wordpress 5.9-6.7 compatibility 165 164 + added a creation date filter on frontend ticket listing 166 165 + modified date format in frontend ticket listing to follow WordPress date format option value 167 166 + added a type "integer" for custom field 167 + fixed an issue with translation loading 168 168 169 169 = V1.0.64 (13/08/2021) = -
wats/tags/1.0.65/wats.php
r2994629 r3239152 13 13 /* 14 14 1/ Release history : 15 - V1.0.65 (12/ 11/2023) :16 + added Wordpress 5.9-6. 4compatibility15 - V1.0.65 (12/02/2025) : 16 + added Wordpress 5.9-6.7 compatibility 17 17 + added a creation date filter on frontend ticket listing 18 18 + modified date format in frontend ticket listing to follow WordPress date format option value 19 19 + added a type "integer" for custom field 20 + fixed an issue with translation loading 20 21 - V1.0.64 (13/08/2021) : 21 22 + fixed an interworking issue with Elementor Pro … … 503 504 function wats_init() 504 505 { 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(); 505 515 wats_register_taxonomy(); 516 517 add_action('admin_menu','wats_add_admin_page'); 506 518 507 519 return; … … 517 529 { 518 530 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 530 531 return; 531 532 } -
wats/trunk/readme.txt
r3187078 r3239152 2 2 Contributors: Olivier 3 3 Donate link: http://www.ticket-system.net/ 4 Tags: support, ticket, helpdesk, ticket system, support system 5 License : GPL v3 4 Tags: support, ticket, helpdesk, ticket system, contact, case, CRM, help, support system, system, support ticket, ticketing system 6 5 Requires at least : 4.0 7 Tested up to: 6.7 6 Tested up to: 6.7.2 8 7 Stable tag: 1.0.65 9 8 … … 161 160 == Changelog == 162 161 163 = V1.0.65 (12/ 11/2023) =164 + added Wordpress 5.9-6. 4compatibility162 = V1.0.65 (12/02/2025) = 163 + added Wordpress 5.9-6.7 compatibility 165 164 + added a creation date filter on frontend ticket listing 166 165 + modified date format in frontend ticket listing to follow WordPress date format option value 167 166 + added a type "integer" for custom field 167 + fixed an issue with translation loading 168 168 169 169 = V1.0.64 (13/08/2021) = -
wats/trunk/wats.php
r2994629 r3239152 13 13 /* 14 14 1/ Release history : 15 - V1.0.65 (12/ 11/2023) :16 + added Wordpress 5.9-6. 4compatibility15 - V1.0.65 (12/02/2025) : 16 + added Wordpress 5.9-6.7 compatibility 17 17 + added a creation date filter on frontend ticket listing 18 18 + modified date format in frontend ticket listing to follow WordPress date format option value 19 19 + added a type "integer" for custom field 20 + fixed an issue with translation loading 20 21 - V1.0.64 (13/08/2021) : 21 22 + fixed an interworking issue with Elementor Pro … … 503 504 function wats_init() 504 505 { 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(); 505 515 wats_register_taxonomy(); 516 517 add_action('admin_menu','wats_add_admin_page'); 506 518 507 519 return; … … 517 529 { 518 530 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 530 531 return; 531 532 }
Note: See TracChangeset
for help on using the changeset viewer.