Changeset 2718703
- Timestamp:
- 05/05/2022 04:13:54 PM (4 years ago)
- Location:
- wp-webinarsystem/trunk
- Files:
-
- 24 added
- 3 deleted
- 5 edited
-
includes/class-webinarsysteem-settings.php (modified) (1 diff)
-
includes/class-webinarsysteem-webinar.php (modified) (2 diffs)
-
includes/images/mediaelement (added)
-
includes/images/mediaelement/mejs-controls.svg (added)
-
includes/templates/template-video-source.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpwebinarsystem.php (modified) (2 diffs)
-
wpws-js/build/apple.79e056d4.svg (added)
-
wpws-js/build/asset-manifest.json (deleted)
-
wpws-js/build/google.b673dd6c.svg (added)
-
wpws-js/build/main.css (added)
-
wpws-js/build/main.js (added)
-
wpws-js/build/manifest.json (deleted)
-
wpws-js/build/outlook.5d17e822.svg (added)
-
wpws-js/build/outlook_online.682d07b3.svg (added)
-
wpws-js/build/roboto-v20-latin-300.66068a26.ttf (added)
-
wpws-js/build/roboto-v20-latin-300.81a5bc04.woff2 (added)
-
wpws-js/build/roboto-v20-latin-300.9527f5b1.woff (added)
-
wpws-js/build/roboto-v20-latin-300.9a7640f5.eot (added)
-
wpws-js/build/roboto-v20-latin-300.fbcf58aa.svg (added)
-
wpws-js/build/roboto-v20-latin-500.5f8bfa54.woff (added)
-
wpws-js/build/roboto-v20-latin-500.aaffad30.ttf (added)
-
wpws-js/build/roboto-v20-latin-500.ae933398.svg (added)
-
wpws-js/build/roboto-v20-latin-500.b3c683d1.woff2 (added)
-
wpws-js/build/roboto-v20-latin-500.fabcf99e.eot (added)
-
wpws-js/build/roboto-v20-latin-regular.35165475.eot (added)
-
wpws-js/build/roboto-v20-latin-regular.541b858a.woff (added)
-
wpws-js/build/roboto-v20-latin-regular.76114e5c.ttf (added)
-
wpws-js/build/roboto-v20-latin-regular.962f1284.woff2 (added)
-
wpws-js/build/roboto-v20-latin-regular.dca3b2be.svg (added)
-
wpws-js/build/static (deleted)
-
wpws-js/build/yahoo.9d007949.svg (added)
Legend:
- Unmodified
- Added
- Removed
-
wp-webinarsystem/trunk/includes/class-webinarsysteem-settings.php
r2479875 r2718703 425 425 // include unsubscribe links 426 426 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'; 428 428 } 429 429 -
wp-webinarsystem/trunk/includes/class-webinarsysteem-webinar.php
r2613742 r2718703 146 146 147 147 public function is_email_confirmation_required() { 148 return $this->get_field('email_confirmation_required') ;148 return $this->get_field('email_confirmation_required') == true; 149 149 } 150 150 … … 1605 1605 'show_controls' => $this->get_field("{$page}p_video_controls_yn") == 'yes', 1606 1606 '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' 1608 1608 ], 1609 1609 'hide_title' => $this->get_field("{$page}p_title_show_yn") == 'yes', -
wp-webinarsystem/trunk/includes/templates/template-video-source.php
r2241879 r2718703 3 3 class WebinarSysteemVideoSources { 4 4 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) { 6 6 $iosdevice = false; 7 7 -
wp-webinarsystem/trunk/readme.txt
r2680922 r2718703 5 5 Requires at least: 4.4.2 6 6 Tested up to: 5.9 7 Stable tag: 1.3 0.187 Stable tag: 1.31.1 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 110 110 == Changelog == 111 111 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 112 118 = 1.30.18 - 2022-02-17 = 113 119 - Fix redirect issue with double optin registrations -
wp-webinarsystem/trunk/wpwebinarsystem.php
r2680922 r2718703 4 4 Plugin URI: https://getwebinarpress.com 5 5 Description: Host live and automated webinars within your WordPress website, and customize everything. 6 Version: 1.3 0.186 Version: 1.31.1 7 7 Author: WebinarPress 8 8 Author URI: https://getwebinarpress.com … … 14 14 include 'includes/core-import.php'; 15 15 16 $plug_version = '1.3 0.18';16 $plug_version = '1.31.1'; 17 17 18 18 define('WPWS_PLUGIN_VERSION', $plug_version);
Note: See TracChangeset
for help on using the changeset viewer.