summaryrefslogtreecommitdiff
path: root/Postman
diff options
context:
space:
mode:
authoryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2019-08-20 21:28:32 +0000
committeryehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664>2019-08-20 21:28:32 +0000
commit0c1f84b79c768e695fff224730b823517d3c5cc9 (patch)
tree05d70e683bdd224f1d19382b9944275f06bc60b0 /Postman
parentd1d82adca1dbb02382d7ccf49b8830816e8fa00f (diff)
downloadPost-SMTP-0c1f84b79c768e695fff224730b823517d3c5cc9.zip
Securty Fixes
Diffstat (limited to 'Postman')
-rw-r--r--Postman/PostmanOptions.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/Postman/PostmanOptions.php b/Postman/PostmanOptions.php
index d890124..e2e78d6 100644
--- a/Postman/PostmanOptions.php
+++ b/Postman/PostmanOptions.php
@@ -167,14 +167,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) {
$this->load();
}
- public function __call($method, $args)
- {
- if (isset($this->$method)) {
- $func = $this->$method;
- return call_user_func_array($func, $args);
- }
- }
-
public function save() {
update_option( PostmanOptions::POSTMAN_OPTIONS, $this->options );
}
@@ -200,8 +192,6 @@ if ( ! class_exists( 'PostmanOptions' ) ) {
restore_current_blog();
}
- do_action( 'post_smtp_options_load', $this );
-
$this->options = $options;
}