Browse Source

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

Thomas A. Baugh 8 năm trước cách đây
mục cha
commit
57be60ec89
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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';