Events Made Easy Forums Bug fixed or feature request implemented bug in my events default formatting

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #53504
    Anonymous
    Inactive

    eme_get_bookings_list_for_person is using template passed in call with default event listing headers and footers from settings, which may not match.

    Fixed like this –

    // if template specified, use it with empty header and footer, otherwise use bookings list defaults from settings
       if ($template) {
          $format=$template;
          $eme_format_header="";
          $eme_format_footer="";
       } else {
       	   $format=get_option('eme_bookings_list_format');
       	   $eme_format_header=get_option('eme_bookings_list_header_format');
       	   $eme_format_footer=get_option('eme_bookings_list_footer_format');
       }
    #53507
    Franky
    Keymaster

    you’re correct, fixed in trunk

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top