Plugin Directory

Changeset 2718703


Ignore:
Timestamp:
05/05/2022 04:13:54 PM (4 years ago)
Author:
WPWebinarSystem
Message:

v1.31.1 (2)

Location:
wp-webinarsystem/trunk
Files:
24 added
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • wp-webinarsystem/trunk/includes/class-webinarsysteem-settings.php

    r2479875 r2718703  
    425425    // include unsubscribe links
    426426    public function get_resubscribe_attendees_on_register() {
    427         return get_option('_wswebinar_resubscribe_attendees_on_register', true);
     427        return get_option('_wswebinar_resubscribe_attendees_on_register', true) == '1';
    428428    }
    429429
  • wp-webinarsystem/trunk/includes/class-webinarsysteem-webinar.php

    r2613742 r2718703  
    146146
    147147    public function is_email_confirmation_required() {
    148         return $this->get_field('email_confirmation_required');
     148        return $this->get_field('email_confirmation_required') == true;
    149149    }
    150150
     
    16051605                'show_controls' => $this->get_field("{$page}p_video_controls_yn") == 'yes',
    16061606                'show_big_button' => $this->get_field("{$page}p_fullscreen_control") == 'yes',
    1607                 'simulate_live_video' => $this->get_field("{$page}p_simulate_video_yn")
     1607                'simulate_live_video' => $this->get_field("{$page}p_simulate_video_yn") == 'yes'
    16081608            ],
    16091609            'hide_title' => $this->get_field("{$page}p_title_show_yn") == 'yes',
  • wp-webinarsystem/trunk/includes/templates/template-video-source.php

    r2241879 r2718703  
    33class WebinarSysteemVideoSources {
    44
    5     public static function getSourceCode($type, $url, $controls, $autoplay, $hideBigPlayButton = false, $fullscreen) {
     5    public static function getSourceCode($type, $url, $controls, $autoplay, $hideBigPlayButton = false, $fullscreen = true) {
    66        $iosdevice = false;
    77
  • wp-webinarsystem/trunk/readme.txt

    r2680922 r2718703  
    55Requires at least: 4.4.2
    66Tested up to: 5.9
    7 Stable tag: 1.30.18
     7Stable tag: 1.31.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    110110== Changelog ==
    111111
     112= 1.31.1 - 2022-03-01 =
     113- Update dependencies
     114- Update build system
     115- Update node compiler version 17
     116- PHP 8.0 support
     117
    112118= 1.30.18 - 2022-02-17 =
    113119- Fix redirect issue with double optin registrations
  • wp-webinarsystem/trunk/wpwebinarsystem.php

    r2680922 r2718703  
    44  Plugin URI: https://getwebinarpress.com
    55  Description: Host live and automated webinars within your WordPress website, and customize everything.
    6   Version: 1.30.18
     6  Version: 1.31.1
    77  Author: WebinarPress
    88  Author URI: https://getwebinarpress.com
     
    1414include 'includes/core-import.php';
    1515
    16 $plug_version = '1.30.18';
     16$plug_version = '1.31.1';
    1717
    1818define('WPWS_PLUGIN_VERSION', $plug_version);
Note: See TracChangeset for help on using the changeset viewer.