Changeset 3204172
- Timestamp:
- 12/07/2024 05:22:42 PM (16 months ago)
- Location:
- video-conferencing-with-bbb/trunk
- Files:
-
- 3 edited
-
README.md (modified) (2 diffs)
-
admin/partials/bigbluebutton-room-code-metabox-display.php (modified) (1 diff)
-
video-conferencing-with-bbb.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
video-conferencing-with-bbb/trunk/README.md
r3141626 r3204172 5 5 Tags: 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 6 6 Requires at least: 5.1 7 Tested up to: 6. 6.17 Tested up to: 6.7.1 8 8 Requires PHP: 7.2 9 Stable tag: 2.4. 19 Stable tag: 2.4.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 175 175 176 176 ## Changelog ## 177 ### 2.4.2 ### 178 * Added: Character limit message for meeting access code on the meeting edit page 179 177 180 ### 2.4.1 ### 178 181 * 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 1 1 <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; ?>"> 4 4 <?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; ?>"> 6 6 <?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 16 16 * Plugin URI: https://wordpress.org/plugins/video-conferencing-with-bbb 17 17 * Description: This plugin allows teachers to manage their virtual classrooms right from WordPress using BigBlueButton 18 * Version: 2.4. 118 * Version: 2.4.2 19 19 * Author: eLearning evolve <info@elearningevolve.com> 20 20 * Author URI: https://elearningevolve.com/
Note: See TracChangeset
for help on using the changeset viewer.