[freeside-commits] branch FREESIDE_3_BRANCH updated. 709bd7a384bd8dbde3a15185708a7598e91130d5
Ivan
ivan at 420.am
Mon Apr 4 15:29:19 PDT 2016
The branch, FREESIDE_3_BRANCH has been updated
via 709bd7a384bd8dbde3a15185708a7598e91130d5 (commit)
from 137d53fa8148996a844dff0f179f8c06afe9e592 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 709bd7a384bd8dbde3a15185708a7598e91130d5
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Apr 4 15:29:16 2016 -0700
fix syntax error as a result of inadvertant backport, RT#41597, RT#35167
diff --git a/FS/FS/part_event/Action/http.pm b/FS/FS/part_event/Action/http.pm
index b17acb8..c3b1af0 100644
--- a/FS/FS/part_event/Action/http.pm
+++ b/FS/FS/part_event/Action/http.pm
@@ -1,13 +1,16 @@
package FS::part_event::Action::http;
+use base qw( FS::part_event::Action );
use strict;
-use base qw( FS::part_event::Action );
+use vars qw( $me );
use IO::Socket::SSL;
use LWP::UserAgent;
use HTTP::Request::Common;
use JSON::XS;
use FS::Misc::DateTime qw( iso8601 );
+$me = '[FS::part_event::Action::http]';
+
#sub description { 'Send an HTTP or HTTPS GET or POST request'; }
sub description { 'Send an HTTP or HTTPS POST request'; }
@@ -38,6 +41,10 @@ sub option_fields {
type => 'textarea',
},
#'response_error_param' => 'Response error parameter',
+ 'debug' => { label => 'Enable debugging',
+ type => 'checkbox',
+ value => 1,
+ },
);
}
-----------------------------------------------------------------------
Summary of changes:
FS/FS/part_event/Action/http.pm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
More information about the freeside-commits
mailing list