Skip to content

Commit

Permalink
Changed class name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
techies23 committed Oct 3, 2024
1 parent 4c4d712 commit 1aa3052
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: zoom video conference, video conference, web conferencing, online meetings
Donate link: https://www.paypal.com/donate?hosted_button_id=2UCQKR868M9WE
Requires at least: 5.0
Tested up to: 6.6
Stable tag: 4.6.1
Stable tag: 4.6.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -161,7 +161,7 @@ Yes, you should be registered in Zoom. Also, depending on the zoom account plan

== Changelog ==

= 4.6.1 October 2nd, 2024 =
= 4.6.1 - 4.6.2 October 3rd, 2024 =
* Changed name of class from I18N => Locales.

= 4.6.0 September 26th, 2024 =
Expand Down
2 changes: 1 addition & 1 deletion templates/join-web-browser.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<label for="meeting_lang"><?php _e( 'Locale', 'video-conferencing-with-zoom-api' ); ?></label>
<select name="meeting-lang" class="form-control meeting-locale">
<?php
$langs = \Codemanas\VczApi\Helpers\I18N::getSupportedTranslationsForWeb();
$langs = \Codemanas\VczApi\Helpers\Locales::getSupportedTranslationsForWeb();
foreach ( $langs as $k => $lang ) {
?>
<option value="<?php echo $k; ?>"><?php echo $lang; ?></option>
Expand Down
4 changes: 2 additions & 2 deletions video-conferencing-with-zoom-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin Name: Video Conferencing with Zoom
* Plugin URI: https://wordpress.org/plugins/video-conferencing-with-zoom-api/
* Description: Video Conferencing with Zoom Meetings and Webinars plugin provides you with great functionality of managing Zoom meetings, Webinar scheduling options, and users directly from your WordPress dashboard.
* Version: 4.6.1
* Version: 4.6.2
* Author: Deepen Bajracharya
* Author URI: https://www.imdpen.com
* License: GPL-2.0+
Expand All @@ -24,7 +24,7 @@

defined( 'ZVC_PLUGIN_FILE' ) || define( 'ZVC_PLUGIN_FILE', __FILE__ );
defined( 'ZVC_PLUGIN_SLUG' ) || define( 'ZVC_PLUGIN_SLUG', 'video-conferencing-zoom' );
defined( 'ZVC_PLUGIN_VERSION' ) || define( 'ZVC_PLUGIN_VERSION', '4.6.1' );
defined( 'ZVC_PLUGIN_VERSION' ) || define( 'ZVC_PLUGIN_VERSION', '4.6.2' );
defined( 'ZVC_ZOOM_WEBSDK_VERSION' ) || define( 'ZVC_ZOOM_WEBSDK_VERSION', '3.8.10' );
defined( 'ZVC_PLUGIN_DIR_PATH' ) || define( 'ZVC_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
defined( 'ZVC_PLUGIN_DIR_URL' ) || define( 'ZVC_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) );
Expand Down

0 comments on commit 1aa3052

Please sign in to comment.