diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2014-11-17 11:13:49 -0500 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2014-11-17 11:13:49 -0500 |
commit | e534bdedcf1de52e376ee4eb92947a9819c376d3 (patch) | |
tree | 4424b9cc5f9fa2030f915cecc46c39bcc5427482 | |
parent | 6ada3dccbb351e62f36922ae130e5668d56cff11 (diff) |
Ticket #31790 phone_shellcommands shell quote phone_name
-rw-r--r-- | FS/FS/part_export/phone_shellcommands.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/part_export/phone_shellcommands.pm b/FS/FS/part_export/phone_shellcommands.pm index 593b14e47..71445bf27 100644 --- a/FS/FS/part_export/phone_shellcommands.pm +++ b/FS/FS/part_export/phone_shellcommands.pm @@ -53,6 +53,7 @@ old_ for replace operations): <LI><code>$cust_name</code> - Customer name (quoted for the shell) <LI><code>$pkgnum</code> - Internal package number <LI><code>$custnum</code> - Internal customer number + <LI><code>$phone_name</code> - Phone name (quoted for the shell) <LI><code>$mac_addr</code> - MAC address (Device MAC address insert and delete commands only) <LI><code>$devicename</code> - Device type (Device type insert and delete commands only) </UL> @@ -115,6 +116,7 @@ sub _export_command { my $cust_name = $cust_pkg ? $cust_pkg->cust_main->name : ''; $cust_name = shell_quote $cust_name; my $sip_password = shell_quote $svc_phone->sip_password; + my $phone_name = shell_quote $svc_phone->phone_name; #done setting variables for the command $self->shellcommands_queue( $svc_phone->svcnum, |