Skip to content

Commit

Permalink
⚡ updated plugin version, readme and pot files. Added a check for WP_…
Browse files Browse the repository at this point in the history
…DEBUG false
  • Loading branch information
jaydeeptrivedi13 committed Nov 12, 2024
1 parent d99fb6e commit 51a051e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions edwiser-bridge/edwiser-bridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Edwiser Bridge - WordPress Moodle LMS Integration
* Plugin URI: https://edwiser.org/bridge-wordpress-moodle-integration/
* Description: Edwiser Bridge integrates WordPress with the Moodle LMS. The plugin provides an easy option to import Moodle courses to WordPress and sell them using PayPal. The plugin also allows automatic registration of WordPress users on the Moodle website along with single login credentials for both the systems.
* Version: 3.0.7
* Version: 3.0.8
* Author: WisdmLabs
* Author URI: https://edwiser.org
* License: GPL-2.0+
Expand All @@ -31,7 +31,7 @@
$eb_plugin_data = array(
'name' => 'Edwiser Bridge - WordPress Moodle LMS Integration',
'slug' => 'edwiser-bridge',
'version' => '3.0.7',
'version' => '3.0.8',
'mdl_plugin_url' => 'https://edwiser.org/plugins/edwiserbridge.zip',
);

Expand Down
2 changes: 1 addition & 1 deletion edwiser-bridge/includes/api/class-eb-connection-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public function connection_test_helper( $url, $token, $text_response = 0 ) {
'wp_url' => get_site_url(),
'wp_token' => $token,
);
if ( defined( 'WP_DEBUG' ) ) {
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { // For localhost or staging sites for testing purposes.
$response = wp_remote_post( $request_url, $request_args );
} else {
$response = wp_safe_remote_post( $request_url, $request_args );
Expand Down
4 changes: 2 additions & 2 deletions edwiser-bridge/languages/edwiser-bridge.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: Edwiser Bridge - WordPress Moodle LMS Integration 3.0.7\n"
"Project-Id-Version: Edwiser Bridge - WordPress Moodle LMS Integration 3.0.8\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/edwiser-bridge\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-11-11T12:46:02+00:00\n"
"POT-Creation-Date: 2024-11-12T07:27:23+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: edwiser-bridge\n"
Expand Down
10 changes: 8 additions & 2 deletions edwiser-bridge/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: WisdmLabs
Tags: wordpress moodle, moodle wordpress, moodle woocommerce, connect moodle with wordpress, sell moodle courses
Requires at least: 6.0
Tested up to: 6.6.1
Stable tag: 3.0.7
Tested up to: 6.6.2
Stable tag: 3.0.8
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -208,6 +208,12 @@ Also, check our knowledge base for more queries


== Changelog ==
= 3.0.8 =
* Feature - Added a integration to Freemius service for feedback collection.
* Tweak - Added a feature where a group with default name gets generated for Gutenberg based checkout page.
* Fix - Fixed several PHP notices and warnings.
* Fix - Security patches added for CVEs - CVE-2024-49312, CVE-2024-4186 & CVE-2024-49311.

= 3.0.7 =
* Feature - Added Feature to enroll student from manage enrollment page.
* Feature - Wordpress to Moodle user deletion sync.
Expand Down

0 comments on commit 51a051e

Please sign in to comment.