diff options
author | ivan <ivan> | 2011-07-13 16:34:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-07-13 16:34:32 +0000 |
commit | ed9cbf0068524b98c0dfdc71183199f4e4333f5e (patch) | |
tree | bb77eb601812c973b4679c29e8254dd3a03407d3 /httemplate/misc/process | |
parent | ea79c3b7eff3f274d9d7f923891853a72cc1474f (diff) |
fix backend recharge w/prepaid card, RT#13478
Diffstat (limited to 'httemplate/misc/process')
-rwxr-xr-x | httemplate/misc/process/recharge_svc.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/httemplate/misc/process/recharge_svc.html b/httemplate/misc/process/recharge_svc.html index b56f8a282..2d49f6b06 100755 --- a/httemplate/misc/process/recharge_svc.html +++ b/httemplate/misc/process/recharge_svc.html @@ -22,6 +22,7 @@ $svcnum = $1; #untaint prepaid my $prepaid = $cgi->param('prepaid'); +$prepaid =~ s/\W//g; $prepaid =~ /^(\w*)$/; $prepaid = $1; |