Explorar el Código

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

Thomas A. Baugh hace 8 años
padre
commit
57be60ec89
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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';