Skip to content

Commit

Permalink
Fixed: Replaced PLUGIN_NAME_SLUG with PLUGIN_NAME_PAGE
Browse files Browse the repository at this point in the history
  • Loading branch information
Seggev authored and Seggev committed Aug 6, 2016
1 parent f475b88 commit a290390
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

foreach ( $links as $link => $name ) {
$i ++;
?><li><a class="<?php if ( $view == $link ) { echo 'current'; } ?>" href="<?php echo admin_url( 'admin.php?page=' . PLUGIN_NAME_SLUG . '&view=' . esc_attr( $link ) ); ?>"><?php echo $name; ?></a><?php if ( $i != sizeof( $links ) ) { echo '|'; } ?></li><?php
?><li><a class="<?php if ( $view == $link ) { echo 'current'; } ?>" href="<?php echo admin_url( 'admin.php?page=' . PLUGIN_NAME_PAGE . '&view=' . esc_attr( $link ) ); ?>"><?php echo $name; ?></a><?php if ( $i != sizeof( $links ) ) { echo '|'; } ?></li><?php
}
?>
</ul>
Expand Down

0 comments on commit a290390

Please sign in to comment.