Skip to content

Commit

Permalink
Fix fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
raftaar1191 committed Nov 12, 2023
1 parent 3880cd4 commit e79974a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/class-view-analytics-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ public function modify_plugin_action_links( $links, $file ) {
return array_merge(
$links,
array(
'media_settings' => '<a href="' . esc_url( bp_get_admin_url( 'admin.php?page=view-analytics' ) ) . '">' . esc_html__( 'Settings', 'view-analytics' ) . '</a>',
'about' => '<a href="' . esc_url( bp_get_admin_url( '?page=acrosswp' ) ) . '">' . esc_html__( 'About', 'view-analytics' ) . '</a>',
'media_settings' => '<a href="' . esc_url( admin_url( 'admin.php?page=view-analytics' ) ) . '">' . esc_html__( 'Settings', 'view-analytics' ) . '</a>',
'about' => '<a href="' . esc_url( admin_url( '?page=acrosswp' ) ) . '">' . esc_html__( 'About', 'view-analytics' ) . '</a>',
)
);
}
Expand Down

0 comments on commit e79974a

Please sign in to comment.