Changeset 3212746
- Timestamp:
- 12/24/2024 05:46:46 PM (15 months ago)
- Location:
- support-genix-lite
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.4 (copied) (copied from support-genix-lite/trunk)
-
tags/1.4.4/modules/Apbd_wps_settings.php (modified) (2 diffs)
-
tags/1.4.4/readme.txt (modified) (2 diffs)
-
tags/1.4.4/support-genix-lite.php (modified) (2 diffs)
-
trunk/modules/Apbd_wps_settings.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/support-genix-lite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
support-genix-lite/tags/1.4.4/modules/Apbd_wps_settings.php
r3212079 r3212746 436 436 } 437 437 } 438 public static function ConvertOldSettings() 439 { 440 $migrated = get_option('apbd_support_genix_migrated', false); 441 442 if ($migrated) { 443 return; 444 } 445 446 global $wpdb; 447 448 $options = $wpdb->get_results(" 449 SELECT option_name, option_value 450 FROM {$wpdb->options} 451 WHERE option_name LIKE '%apbd-wp-support%' 452 "); 453 454 if (!empty($options)) { 455 foreach ($options as $option) { 456 $option_name = $option->option_name; 457 $option_value = $option->option_value; 458 459 $new_option_name = str_replace('apbd-wp-support', 'support-genix', $option_name); 460 $new_option_value = is_serialized($option_value) ? unserialize($option_value) : $option_value; 461 462 update_option($new_option_name, $new_option_value); 463 } 464 } 465 466 update_option('apbd_support_genix_migrated', true); 467 } 438 468 public static function CreateEncryptionKey() 439 469 { … … 881 911 } 882 912 } 913 914 // From version 1.4.4 915 Apbd_wps_settings::ConvertOldSettings(); 883 916 } 884 917 -
support-genix-lite/tags/1.4.4/readme.txt
r3212577 r3212746 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.2 8 Stable tag: 1.4. 38 Stable tag: 1.4.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 178 178 == Changelog == 179 179 180 = Version: 1.4.3 - Date: 24 December, 2024 = 181 * Fixed: Minor issues to ensure better functionality and reliability. 182 183 = Version: 1.4.2 - Date: 24 December, 2024 = 184 * Fixed: Minor issues to ensure better functionality and reliability. 185 186 = Version: 1.4.1 - Date: 23 December, 2024 = 187 * Fixed: Minor issues to ensure better functionality and reliability. 180 = Version: 1.4.4 - Date: 24 December, 2024 = 181 * Fixed: Issue where existing settings were not being detected. 182 * Fixed: Various minor issues to ensure better functionality and reliability. 188 183 189 184 = Version: 1.4.0 - Date: 23 December, 2024 = -
support-genix-lite/tags/1.4.4/support-genix-lite.php
r3212577 r3212746 4 4 Plugin URI: http://supportgenix.com 5 5 Description: Client ticketing app for Wordpress 6 Version: 1.4. 36 Version: 1.4.4 7 7 Author: Support Genix 8 8 Author URI: https://supportgenix.com … … 17 17 $appWpSUpportLiteFile = __FILE__; 18 18 $appWpSUpportLitePath = dirname($appWpSUpportLiteFile); 19 $appWpSUpportLiteVersion = '1.4. 3';19 $appWpSUpportLiteVersion = '1.4.4'; 20 20 21 21 if (!defined('SUPPORT_GENIX_LITE_FILE_PATH')) { -
support-genix-lite/trunk/modules/Apbd_wps_settings.php
r3212079 r3212746 436 436 } 437 437 } 438 public static function ConvertOldSettings() 439 { 440 $migrated = get_option('apbd_support_genix_migrated', false); 441 442 if ($migrated) { 443 return; 444 } 445 446 global $wpdb; 447 448 $options = $wpdb->get_results(" 449 SELECT option_name, option_value 450 FROM {$wpdb->options} 451 WHERE option_name LIKE '%apbd-wp-support%' 452 "); 453 454 if (!empty($options)) { 455 foreach ($options as $option) { 456 $option_name = $option->option_name; 457 $option_value = $option->option_value; 458 459 $new_option_name = str_replace('apbd-wp-support', 'support-genix', $option_name); 460 $new_option_value = is_serialized($option_value) ? unserialize($option_value) : $option_value; 461 462 update_option($new_option_name, $new_option_value); 463 } 464 } 465 466 update_option('apbd_support_genix_migrated', true); 467 } 438 468 public static function CreateEncryptionKey() 439 469 { … … 881 911 } 882 912 } 913 914 // From version 1.4.4 915 Apbd_wps_settings::ConvertOldSettings(); 883 916 } 884 917 -
support-genix-lite/trunk/readme.txt
r3212577 r3212746 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.2 8 Stable tag: 1.4. 38 Stable tag: 1.4.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 178 178 == Changelog == 179 179 180 = Version: 1.4.3 - Date: 24 December, 2024 = 181 * Fixed: Minor issues to ensure better functionality and reliability. 182 183 = Version: 1.4.2 - Date: 24 December, 2024 = 184 * Fixed: Minor issues to ensure better functionality and reliability. 185 186 = Version: 1.4.1 - Date: 23 December, 2024 = 187 * Fixed: Minor issues to ensure better functionality and reliability. 180 = Version: 1.4.4 - Date: 24 December, 2024 = 181 * Fixed: Issue where existing settings were not being detected. 182 * Fixed: Various minor issues to ensure better functionality and reliability. 188 183 189 184 = Version: 1.4.0 - Date: 23 December, 2024 = -
support-genix-lite/trunk/support-genix-lite.php
r3212577 r3212746 4 4 Plugin URI: http://supportgenix.com 5 5 Description: Client ticketing app for Wordpress 6 Version: 1.4. 36 Version: 1.4.4 7 7 Author: Support Genix 8 8 Author URI: https://supportgenix.com … … 17 17 $appWpSUpportLiteFile = __FILE__; 18 18 $appWpSUpportLitePath = dirname($appWpSUpportLiteFile); 19 $appWpSUpportLiteVersion = '1.4. 3';19 $appWpSUpportLiteVersion = '1.4.4'; 20 20 21 21 if (!defined('SUPPORT_GENIX_LITE_FILE_PATH')) {
Note: See TracChangeset
for help on using the changeset viewer.