Skip to content

Commit

Permalink
Merge branch 'dev' into fix/date-range-widget
Browse files Browse the repository at this point in the history
  • Loading branch information
ideadude authored Feb 5, 2025
2 parents 3572238 + 4e41e44 commit 27d3459
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelogs/fix_escaping-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
significance: patch
type: fixed
entry: Additional escaping for form permalinks.
5 changes: 5 additions & 0 deletions .changelogs/fix_wp-cli-error.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
significance: patch
type: fixed
attributions:
- "@jv-mtrz"
entry: Fixed PHP >= 8.3 warning when using WP CLI.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"composer/installers": "~1.9.0",
"deliciousbrains/wp-background-processing": "1.0.2",
"lifterlms/lifterlms-blocks": "2.5.9",
"lifterlms/lifterlms-cli": "0.0.4",
"lifterlms/lifterlms-cli": "0.0.5",
"lifterlms/lifterlms-helper": "3.5.4",
"lifterlms/lifterlms-rest": "1.0.2",
"woocommerce/action-scheduler": "3.5.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function manage_post_row_actions( $actions, $post ) {
$link = get_permalink( $post );
if ( $link ) {
$label = sprintf( esc_attr__( 'View "%s"', 'lifterlms' ), $post->post_title );
$actions['view'] = sprintf( '<a href="%1$s" rel="bookmark" aria-label="%2$s">%3$s</a>', $link, $label, __( 'View', 'lifterlms' ) );
$actions['view'] = sprintf( '<a href="%1$s" rel="bookmark" aria-label="%2$s">%3$s</a>', esc_url( $link ), $label, __( 'View', 'lifterlms' ) );
}

return $actions;
Expand Down

0 comments on commit 27d3459

Please sign in to comment.