Changeset 2844617
- Timestamp:
- 01/06/2023 02:35:57 PM (3 years ago)
- Location:
- badgeos/trunk
- Files:
-
- 4 edited
-
badgeos.php (modified) (2 diffs)
-
includes/achievement-functions.php (modified) (1 diff)
-
includes/p2p/p2p-admin/dropdown.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
badgeos/trunk/badgeos.php
r2814433 r2844617 5 5 * Description: BadgeOS lets your site’s users complete tasks and earn badges, ranks, and points that recognize their achievement. Define achievements and choose from a range of options that determine when they're complete. Badges are Mozilla Open Badges (OBI) compatible so the users can easily validate the earned badges. 6 6 * Author: LearningTimes 7 * Version: 3.7.1. 57 * Version: 3.7.1.6 8 8 * Author URI: https://credly.com/ 9 9 * License: GNU AGPL … … 39 39 * @var string 40 40 */ 41 public static $version = '3.7.1. 5';41 public static $version = '3.7.1.6'; 42 42 43 43 /** -
badgeos/trunk/includes/achievement-functions.php
r2783573 r2844617 1526 1526 $last_points_awarded = $wpdb->get_results( 1527 1527 $wpdb->prepare( 1528 "SELECT * FROM %s1528 "SELECT * FROM {$points_table_name} 1529 1529 WHERE type = 'Award' 1530 1530 AND user_id = %d 1531 1531 AND achievement_id IN (%s) 1532 1532 ORDER BY `dateadded` DESC ", 1533 $points_table_name,1534 1533 $user_id, 1535 1534 $achievement_ids -
badgeos/trunk/includes/p2p/p2p-admin/dropdown.php
r2772701 r2844617 53 53 $args['connected_type'] = key( sanitize_text_field( $_GET['p2p'] ) ); 54 54 55 list( $args['connected_direction'], $args['connected_items'] ) = each( $tmp ); 55 // list( $args['connected_direction'], $args['connected_items'] ) = each( $tmp ); 56 foreach ($tmp as $key => $value) { 57 $args['connected_direction'] = $key; 58 $args['connected_items'] = $value; 59 break; 60 } 56 61 57 62 if ( ! $args['connected_items'] ) { -
badgeos/trunk/readme.txt
r2814433 r2844617 4 4 Tags: badge, badges, openbadges, gamification, learningtimes, OBI, mozilla, open badges, achievement, points, ranks, award, reward, engagement, submission, nomination, API, open credit, credit 5 5 Requires at least: 4.0 6 Tested up to: 6.1 7 Stable tag: 3.7.1. 56 Tested up to: 6.1.1 7 Stable tag: 3.7.1.6 8 8 License: GNU AGPLv3 9 9 License URI: http://www.gnu.org/licenses/agpl-3.0.html … … 201 201 == Changelog == 202 202 203 = 3.7.1.6 = 204 * Fix: Minor issues. 205 * Fix: Compatibility issues with PHP 8. 206 203 207 = 3.7.1.5 = 204 208 * New: Shortcode/block to show BadgeOS user dashboard.
Note: See TracChangeset
for help on using the changeset viewer.