Changeset 13990
- Timestamp:
- 08/26/2024 01:46:57 AM (8 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/inc/block-hooks.php
r13938 r13990 93 93 $label = ''; 94 94 while ( $html->next_tag( array( 'class_name' => 'wp-block-sensei-lms-course-outline-lesson' ) ) ) { 95 if ( $html->has_class( 'is-complete' ) ) {95 if ( $html->has_class( 'is-complete' ) || $html->has_class( 'is-passed' ) ) { 96 96 $label = __( 'Completed', 'wporg-learn' ); 97 97 } else if ( $html->has_class( 'is-in-progress' ) ) { -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/style.css
r13987 r13990 5 5 * Author URI: http://wordpress.org/ 6 6 * Description: A theme for learn.wordpress.org, built in 2024. 7 * Version: 1.0.0- 8ebdeab7 * Version: 1.0.0-cb3ea71 8 8 * License: GNU General Public License v2 or later 9 9 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.