Procházet zdrojové kódy

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

Thomas A. Baugh před 8 roky
rodič
revize
57be60ec89
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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';