We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892a16b commit 473ff85Copy full SHA for 473ff85
webdav.php
@@ -31,13 +31,15 @@ public function __construct() {
31
}
32
33
// Stop services on plugin disabled.
34
- public function hcpp_plugin_disabled() {
35
- $this->stop();
+ public function hcpp_plugin_disabled( $plugin ) {
+ if ( $plugin === 'webdav') $this->stop();
36
+ return $plugin;
37
38
39
// Start services on plugin enabled.
- public function hcpp_plugin_enabled() {
40
- $this->start();
+ public function hcpp_plugin_enabled( $plugin ) {
41
+ if ( $plugin == 'webdav' ) $this->start();
42
43
44
45
// Intercept the certificate generation and copy over ssl certs for the webdav domain.
0 commit comments