From: ivan Date: Thu, 29 Jun 2006 15:45:57 +0000 (+0000) Subject: small patch to set $new_finger from Tim Yardley X-Git-Tag: BEFORE_FINAL_MASONIZE~93 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=fffb8cbfac6c7f2eea302691fcf4c09180128e3d small patch to set $new_finger from Tim Yardley --- diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm index 646c5ff71..e488a52b2 100644 --- a/FS/FS/part_export/shellcommands.pm +++ b/FS/FS/part_export/shellcommands.pm @@ -257,7 +257,7 @@ sub _export_replace { ${"old_$_"} = $old->getfield($_) foreach $old->fields; ${"new_$_"} = $new->getfield($_) foreach $new->fields; } - $new_finger =~ /^(.*)\s+(\S+)$/ or $finger =~ /^((.*))$/; + $new_finger =~ /^(.*)\s+(\S+)$/ or $new_finger =~ /^((.*))$/; ($new_first, $new_last ) = ( $1, $2 ); $new_first = shell_quote $new_first; $new_last = shell_quote $new_last;