Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typo, PFWMA-226 #89

Merged
merged 1 commit into from
Apr 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,12 @@ public function display_plugin_admin_page_submenu() {
if (empty($_GET['section'])) {
echo 'current';
}
?>"><?php echo __('All PayPal Acounts', 'angelleye-paypal-shipment-tracking-woocommerce'); ?></a> |</li>
?>"><?php echo __('All PayPal Accounts', 'angelleye-paypal-shipment-tracking-woocommerce'); ?></a> |</li>
<li><a href="<?php echo esc_url(admin_url('admin.php?page=wc-settings&tab=multi_account_management&section=add_edit_account')); ?>" class="<?php
if (!empty($_GET['section']) && $_GET['section'] == 'add_edit_account') {
echo 'current';
}
?>"><?php echo __('Add / Edit Acounts', 'angelleye-paypal-shipment-tracking-woocommerce'); ?></a> | </li>
?>"><?php echo __('Add / Edit Accounts', 'angelleye-paypal-shipment-tracking-woocommerce'); ?></a> | </li>
<li><a href="<?php echo esc_url(admin_url('admin.php?page=wc-settings&tab=multi_account_management&section=settings')); ?>" class="<?php
if (!empty($_GET['section']) && $_GET['section'] == 'settings') {
echo 'current';
Expand Down