Changeset 3328375
- Timestamp:
- 07/15/2025 04:01:38 PM (9 months ago)
- Location:
- wp-businessdirectory/trunk
- Files:
-
- 4 edited
-
admin/language/en-GB/en-GB.com_jbusinessdirectory.ini (modified) (1 diff)
-
admin/tables/package.php (modified) (2 diffs)
-
site/classes/services/EmailService.php (modified) (1 diff)
-
site/helpers/utils.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-businessdirectory/trunk/admin/language/en-GB/en-GB.com_jbusinessdirectory.ini
r3281080 r3328375 5608 5608 5609 5609 LNG_TIKTOK="Tiktok" 5610 LNG_ERROR_SAVING_STOCK_CONFIGURATION="Error saving stock configuration" -
wp-businessdirectory/trunk/admin/tables/package.php
r3281080 r3328375 220 220 return $db->loadObject(); 221 221 } 222 223 222 224 223 public function getCurrentActivePackage($companyId) { … … 261 260 $package = $db->loadObject(); 262 261 //dump($package); 263 if ( isset($package)) {262 if (!empty($package) && !empty($package->featuresS) ) { 264 263 $package->features = explode(",", $package->featuresS); 265 264 } -
wp-businessdirectory/trunk/site/classes/services/EmailService.php
r3281080 r3328375 2097 2097 } 2098 2098 2099 $content = str_replace(EMAIL_WELCOME_TEXT, $welcomeText, $content);2099 //$content = str_replace(EMAIL_WELCOME_TEXT, $welcomeText, $content); 2100 2100 2101 2101 $subject = $templ->email_subject; -
wp-businessdirectory/trunk/site/helpers/utils.php
r3281080 r3328375 10 10 use MVC\Factory; 11 11 use MVC\HTML\HTMLHelper; 12 use AllowDynamicProperties; 12 13 13 14 /** … … 5969 5970 $jsSettings->enable_map_clustering = $appSettings->enable_map_clustering; 5970 5971 $jsSettings->map_enable_auto_locate = $appSettings->map_enable_auto_locate; 5971 $jsSettings->projects_style = $appSettings->projects_style;5972 $jsSettings->projects_style = isset($appSettings->projects_style) ? $appSettings->projects_style : null; 5972 5973 $jsSettings->search_filter_items = $appSettings->search_filter_items; 5973 5974 $jsSettings->event_search_filter_items = $appSettings->event_search_filter_items; … … 5980 5981 $jsSettings->search_filter_type = $appSettings->search_filter_type; 5981 5982 $jsSettings->offers_search_filter_type = $appSettings->offers_search_filter_type; 5982 $jsSettings->events_search_filter_type = $appSettings->events_search_filter_type;5983 $jsSettings->speaker_img_width = $appSettings->speaker_img_width;5984 $jsSettings->speaker_img_height = $appSettings->speaker_img_height;5983 $jsSettings->events_search_filter_type = isset($appSettings->events_search_filter_type) ? $appSettings->events_search_filter_type : null; 5984 $jsSettings->speaker_img_width = isset($appSettings->speaker_img_width) ? $appSettings->speaker_img_width : null; 5985 $jsSettings->speaker_img_height = isset($appSettings->speaker_img_height) ? $appSettings->speaker_img_height : null; 5985 5986 $jsSettings->location_map_marker = $appSettings->location_map_marker; 5986 5987 $jsSettings->disable_cropping_types=array(PICTURE_TYPE_CATEGORY_ICON, PICTURE_TYPE_MARKER); … … 5990 5991 $jsSettings->google_map_key = $appSettings->google_map_key; 5991 5992 $jsSettings->show_search_map = $appSettings->show_search_map; 5993 5992 5994 5993 5995 $langTab = JBusinessUtil::getLanguageTag();
Note: See TracChangeset
for help on using the changeset viewer.