diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-02-17 20:56:03 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-02-17 20:56:03 +0000 |
commit | f627e0d82c18a1ed60eead38ce38746ded43adc6 (patch) | |
tree | 0a3ef3c2266b717a3880c0c4c6edcdc3aae7c275 /Postman/PostmanUtils.php | |
parent | a04f57be50a9ce581d8a48acd817d2788958a1dd (diff) | |
download | Post-SMTP-f627e0d82c18a1ed60eead38ce38746ded43adc6.zip |
= 1.9.7 - 2019-02-17
* New: Fallback Feature - Configure a backup SMTP when emails are failing.
* New: WordPress Multisite compability - with global settings.
* New: Email Log capability - give other user cheking the logs.
* Fixed: compatibility with mailster plugin
* Fixed: Mandrill exception bug - Thanks to Niels de Blaauw from Level-Level
Diffstat (limited to 'Postman/PostmanUtils.php')
-rw-r--r-- | Postman/PostmanUtils.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Postman/PostmanUtils.php b/Postman/PostmanUtils.php index 5405b79..8c7081f 100644 --- a/Postman/PostmanUtils.php +++ b/Postman/PostmanUtils.php @@ -36,6 +36,10 @@ class PostmanUtils { * @return string */ public static function getPageUrl( $slug ) { + if ( is_network_admin() ) { + return network_admin_url( 'admin.php?page=' . $slug ); + } + return get_admin_url() . 'admin.php?page=' . $slug; } @@ -393,6 +397,7 @@ class PostmanUtils { if ( $logger->isTrace() ) { $logger->trace( 'Registering admin menu ' . $callbackName ); } + add_action( 'admin_menu', array( $viewController, $callbackName, |