Changeset 3169298
- Timestamp:
- 10/15/2024 12:53:11 PM (18 months ago)
- Location:
- learnworlds-sso
- Files:
-
- 6 edited
- 1 copied
-
tags/1.8 (copied) (copied from learnworlds-sso/trunk)
-
tags/1.8/class.learnworlds-sso-menu.php (modified) (1 diff)
-
tags/1.8/learnworlds-sso.php (modified) (1 diff)
-
tags/1.8/readme.txt (modified) (2 diffs)
-
trunk/class.learnworlds-sso-menu.php (modified) (1 diff)
-
trunk/learnworlds-sso.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
learnworlds-sso/tags/1.8/class.learnworlds-sso-menu.php
r3079440 r3169298 17 17 function modify_sso_menu_items( $atts, $item, $args ) 18 18 { 19 if ( in_array(self::SSO_LINK_CLASS_NAME, $item->classes)) {19 if ((is_array($item->classes) && in_array(self::SSO_LINK_CLASS_NAME, $item->classes)) || (is_string($item->classes) && strpos($item->classes, self::SSO_LINK_CLASS_NAME) !== false)) { 20 20 $baseUrl = rest_url(Learnworlds_SSO_Route::ROUTE_NAMESPACE . Learnworlds_SSO_Route::ROUTE_URL); 21 21 $atts['href'] = $baseUrl . '?redirectUrl=' . urlencode($atts['href']); -
learnworlds-sso/tags/1.8/learnworlds-sso.php
r3079447 r3169298 4 4 Plugin URI: https://learnworlds.com 5 5 Description: Give your students access to their school account right from your WordPress page. 6 Version: 1. 76 Version: 1.8 7 7 Author: Learnworlds 8 8 Author URI: https://www.learnworlds.com/ -
learnworlds-sso/tags/1.8/readme.txt
r3079440 r3169298 3 3 Tags: Learnworlds, SSO, eLearning, WooCommerce, Login, Reset, Register 4 4 Requires at least: 4.8 5 Tested up to: 6. 5.26 Stable tag: 1. 75 Tested up to: 6.6.2 6 Stable tag: 1.8 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 68 68 69 69 == Changelog == 70 = 1.8 = 71 * Improve compatibility with other plugins 72 70 73 = 1.7 = 71 74 * Fix SSO menu links and shortcode -
learnworlds-sso/trunk/class.learnworlds-sso-menu.php
r3079440 r3169298 17 17 function modify_sso_menu_items( $atts, $item, $args ) 18 18 { 19 if ( in_array(self::SSO_LINK_CLASS_NAME, $item->classes)) {19 if ((is_array($item->classes) && in_array(self::SSO_LINK_CLASS_NAME, $item->classes)) || (is_string($item->classes) && strpos($item->classes, self::SSO_LINK_CLASS_NAME) !== false)) { 20 20 $baseUrl = rest_url(Learnworlds_SSO_Route::ROUTE_NAMESPACE . Learnworlds_SSO_Route::ROUTE_URL); 21 21 $atts['href'] = $baseUrl . '?redirectUrl=' . urlencode($atts['href']); -
learnworlds-sso/trunk/learnworlds-sso.php
r3079447 r3169298 4 4 Plugin URI: https://learnworlds.com 5 5 Description: Give your students access to their school account right from your WordPress page. 6 Version: 1. 76 Version: 1.8 7 7 Author: Learnworlds 8 8 Author URI: https://www.learnworlds.com/ -
learnworlds-sso/trunk/readme.txt
r3079440 r3169298 3 3 Tags: Learnworlds, SSO, eLearning, WooCommerce, Login, Reset, Register 4 4 Requires at least: 4.8 5 Tested up to: 6. 5.26 Stable tag: 1. 75 Tested up to: 6.6.2 6 Stable tag: 1.8 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 68 68 69 69 == Changelog == 70 = 1.8 = 71 * Improve compatibility with other plugins 72 70 73 = 1.7 = 71 74 * Fix SSO menu links and shortcode
Note: See TracChangeset
for help on using the changeset viewer.