Created
August 30, 2010 19:30
-
-
Save metaperl/557907 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| my $acct_code = $self->get_domreg_account_code; | |
| $acct_code =~ s/REG/NEW/; # ENH27417 | |
| # Populate billing structure | |
| my $product = | |
| { | |
| virtkey => $self->get_name, | |
| length => $args->{length}, | |
| acct_code => $acct_code | |
| }; | |
| push( @provisioned, $product ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment