Check whether debugging is enabled is buggy?
-
in file: wp-content/plugins/post-smtp/Postman/PostmanLogger.php
$this->wpDebug = defined ( ‘WP_DEBUG’ );
should be:
$this->wpDebug = defined ( ‘WP_DEBUG’ ) && WP_DEBUG;
shouldn’t it?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.