Przeglądaj źródła

Don't use strict in the XMPP module, as it isn't always safe to do

Thomas A. Baugh 8 lat temu
rodzic
commit
57be60ec89
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      lib/Cpanel/iContact/Provider/XMPP.pm

+ 2 - 1
lib/Cpanel/iContact/Provider/XMPP.pm

@@ -1,6 +1,7 @@
 package Cpanel::iContact::Provider::XMPP;
 
-use strict;
+# Not strict safe in all cases, a change in v70 to enable compiled queueprocd seems to trigger bombouts on the Net::XMPP require.
+#use strict;
 use warnings;
 
 use parent 'Cpanel::iContact::Provider';