Skip to content

Commit

Permalink
fix fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
raftaar1191 committed May 15, 2024
1 parent 0a1ce21 commit f4c2ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/class-wordpress-plugin-boilerplate-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ public function modify_plugin_action_links( $links, $file ) {
return array_merge(
$links,
array(
'settings' => '<a href="' . esc_url( bp_get_admin_url( 'admin.php?page=bp-settings' ) ) . '">' . esc_html__( 'Settings', 'wordpress-plugin-boilerplate' ) . '</a>',
'about' => '<a href="' . esc_url( bp_get_admin_url( '?page=acrosswp' ) ) . '">' . esc_html__( 'About', 'wordpress-plugin-boilerplate' ) . '</a>',
'settings' => '<a href="' . esc_url( admin_url( 'admin.php?page=bp-settings' ) ) . '">' . esc_html__( 'Settings', 'wordpress-plugin-boilerplate' ) . '</a>',
'about' => '<a href="' . esc_url( admin_url( '?page=acrosswp' ) ) . '">' . esc_html__( 'About', 'wordpress-plugin-boilerplate' ) . '</a>',
)
);
}
Expand Down

0 comments on commit f4c2ea9

Please sign in to comment.