Plugin Directory

Changeset 3204172


Ignore:
Timestamp:
12/07/2024 05:22:42 PM (16 months ago)
Author:
elearningevolve
Message:

2.4.2-update

Location:
video-conferencing-with-bbb/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • video-conferencing-with-bbb/trunk/README.md

    r3141626 r3204172  
    55Tags: virtual classroom, video conference, BigBlueButton, BBB, online meeting, web conferencing, online teaching, learning management system, LMS, online session, live training, video conferencing, video conference, meetings, virtual meetings
    66Requires at least: 5.1 
    7 Tested up to: 6.6.1 
     7Tested up to: 6.7.1 
    88Requires PHP: 7.2 
    9 Stable tag: 2.4.1 
     9Stable tag: 2.4.2 
    1010License: GPLv2 or later 
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html 
     
    175175
    176176## Changelog ##
     177### 2.4.2 ###
     178* Added: Character limit message for meeting access code on the meeting edit page
     179
    177180### 2.4.1 ###
    178181* Added: Translation support for a few text snippets in the plugin that were not translation friendly
  • video-conferencing-with-bbb/trunk/admin/partials/bigbluebutton-room-code-metabox-display.php

    r2712288 r3204172  
    11<label><?php echo $entry_code_label; ?>: </label>
    2 <?php if ( $existing_value != '' ) { ?>
    3     <input name="<?php echo $entry_code_name; ?>" type="text" value="<?php echo $existing_value; ?>">
     2<?php if ($existing_value != '') { ?>
     3    <input name="<?php echo $entry_code_name; ?>" type="text" maxlength="3" value="<?php echo $existing_value; ?>">
    44<?php } else { ?>
    5     <input name="<?php echo $entry_code_name; ?>" type="text" value="<?php echo $entry_code; ?>">
     5    <input name="<?php echo $entry_code_name; ?>" type="text" maxlength="3" value="<?php echo $entry_code; ?>">
    66<?php } ?>
    7 <p><?php echo esc_html( $entry_code_msg ); ?></p>
     7<p><?php echo esc_html($entry_code_msg); ?></p>
     8<p><strong><?php _e('The access code must be at least 3 characters long', 'bigbluebutton'); ?></strong></p>
  • video-conferencing-with-bbb/trunk/video-conferencing-with-bbb.php

    r3106211 r3204172  
    1616 * Plugin URI:        https://wordpress.org/plugins/video-conferencing-with-bbb
    1717 * Description:       This plugin allows teachers to manage their virtual classrooms right from WordPress using BigBlueButton
    18  * Version:           2.4.1
     18 * Version:           2.4.2
    1919 * Author:            eLearning evolve <info@elearningevolve.com>
    2020 * Author URI:        https://elearningevolve.com/
Note: See TracChangeset for help on using the changeset viewer.