Changeset 2984001
- Timestamp:
- 10/25/2023 07:08:57 PM (2 years ago)
- Location:
- 1003-mortgage-application/trunk
- Files:
-
- 2 edited
-
mortgage-application-pro.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
1003-mortgage-application/trunk/mortgage-application-pro.php
r2983328 r2984001 5 5 * Plugin URI: https://mortgageapplicationplugin.com 6 6 * Description: 1003 Mortgage Application is a very easy-to-use wordpress plugin built with the purpose of providing financial industry professionals with a quick and easy way to capture client information. 7 * Version: 1.8 17 * Version: 1.82 8 8 * Author: Lenderd 9 9 * Author URI: https://lenderd.com … … 20 20 defined('ABSPATH') or die("Access denied!"); 21 21 22 define('MAPP_MORTGAGE_APP_VERSION', '1.8 1');22 define('MAPP_MORTGAGE_APP_VERSION', '1.82'); 23 23 24 24 // DEFINED CONSTANT … … 79 79 // Set hourly event to check uploaded file delete days. 80 80 81 81 82 $option_data = MAPP_MORTGAGE_APP_BASE_DATA; 82 83 foreach ($option_data as $option_name => $value) { 83 84 if (is_multisite()) { 84 update_site_option($option_name, $value); 85 if (!get_site_option($option_name)) { 86 update_site_option($option_name, $value); 87 } 85 88 } else { 86 update_option($option_name, $value); 89 if (!get_option($option_name)) { 90 update_option($option_name, $value); 91 } 87 92 } 88 93 } -
1003-mortgage-application/trunk/readme.txt
r2983328 r2984001 55 55 56 56 == Changelog == 57 = 1.82 20231025 = 58 59 * Options not saving on update, fixed 60 57 61 = 1.81 20231024 = 58 62
Note: See TracChangeset
for help on using the changeset viewer.