diff options
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 10 | ||||
-rw-r--r-- | FS/FS/queue_depend.pm | 2 | ||||
-rw-r--r-- | FS/FS/svc_acct.pm | 4 | ||||
-rwxr-xr-x | FS/bin/freeside-setup | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 99d27dd5e..62e6a5c44 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -336,7 +336,7 @@ Currently available options are: I<depend_jobnum> and I<noexport>. If I<depend_jobnum> is set, all provisioning jobs will have a dependancy on the supplied jobnum (they will not run until the specific job completes). This can be used to defer provisioning until some action completes (such -as running the customer's credit card sucessfully). +as running the customer's credit card successfully). The I<noexport> option is deprecated. If I<noexport> is set true, no provisioning jobs (exports) are scheduled. (You can schedule them later with @@ -480,7 +480,7 @@ Currently available options are: I<depend_jobnum> and I<noexport>. If I<depend_jobnum> is set, all provisioning jobs will have a dependancy on the supplied jobnum (they will not run until the specific job completes). This can be used to defer provisioning until some action completes (such -as running the customer's credit card sucessfully). +as running the customer's credit card successfully). The I<noexport> option is deprecated. If I<noexport> is set true, no provisioning jobs (exports) are scheduled. (You can schedule them later with @@ -2234,7 +2234,7 @@ if set, will override the value from the customer record. I<description> is a free-text field passed to the gateway. It defaults to "Internet services". -If an I<invnum> is specified, this payment (if sucessful) is applied to the +If an I<invnum> is specified, this payment (if successful) is applied to the specified invoice. If you don't specify an I<invnum> you might want to call the B<apply_payments> method. @@ -2488,7 +2488,7 @@ sub realtime_bop { $capture->submit(); unless ( $capture->is_success ) { - my $e = "Authorization sucessful but capture failed, custnum #". + my $e = "Authorization successful but capture failed, custnum #". $self->custnum. ': '. $capture->result_code. ": ". $capture->error_message; warn $e; @@ -2668,7 +2668,7 @@ gateway is attempted. #I<zip>, I<payinfo> and I<paydate> are also available. Any of these options, #if set, will override the value from the customer record. -#If an I<invnum> is specified, this payment (if sucessful) is applied to the +#If an I<invnum> is specified, this payment (if successful) is applied to the #specified invoice. If you don't specify an I<invnum> you might want to #call the B<apply_payments> method. diff --git a/FS/FS/queue_depend.pm b/FS/FS/queue_depend.pm index bc910d8e9..99a22c5c6 100644 --- a/FS/FS/queue_depend.pm +++ b/FS/FS/queue_depend.pm @@ -43,7 +43,7 @@ inherits from FS::Record. The following fields are currently supported: The job specified by B<jobnum> depends on the job specified B<depend_jobnum> - the B<jobnum> job will not be run until the B<depend_jobnum> job has completed -sucessfully (or manually removed). +successfully (or manually removed). =head1 METHODS diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index a2b7a11c7..2872a5f74 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1267,7 +1267,7 @@ sub _op_seconds { } } - warn "$me update sucessful; committing\n" + warn "$me update successful; committing\n" if $DEBUG; $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; @@ -1455,7 +1455,7 @@ sub clone_kludge_unsuspend { =item check_password Checks the supplied password against the (possibly encrypted) password in the -database. Returns true for a sucessful authentication, false for no match. +database. Returns true for a successful authentication, false for no match. Currently supported encryptions are: classic DES crypt() and MD5 diff --git a/FS/bin/freeside-setup b/FS/bin/freeside-setup index bff2bcc63..9f87f10b7 100755 --- a/FS/bin/freeside-setup +++ b/FS/bin/freeside-setup @@ -109,7 +109,7 @@ warn "Freeside database initialized - commiting transaction\n" if $opt_v; $dbh->commit or die $dbh->errstr; $dbh->disconnect or die $dbh->errstr; -warn "Database initialization committed sucessfully\n" if $opt_v; +warn "Database initialization committed successfully\n" if $opt_v; sub dbdef_create { # reverse engineer the schema from the DB and save to file my( $dbh, $file ) = @_; |