internationalization/localization, RT12515
[freeside.git] / httemplate / edit / process / change-cust_pkg.html
index 7356e61..2770f32 100644 (file)
@@ -3,7 +3,7 @@
 %   $cgi->redirect(popurl(3). 'misc/change_pkg.cgi?'. $cgi->query_string );
 % } else {
 
-    <% header("Package changed") %>
+    <% header(emt("Package changed")) %>
       <SCRIPT TYPE="text/javascript">
         window.top.location.reload();
       </SCRIPT>
@@ -19,7 +19,6 @@ die "access denied"
   unless $curuser->access_right('Change customer package');
 
 my $cust_pkg = qsearchs({
-  #'select'    => 'cust_pkg.*',
   'table'     => 'cust_pkg',
   'addl_from' => 'LEFT JOIN cust_main USING ( custnum )',
   'hashref'   => { 'pkgnum' => scalar($cgi->param('pkgnum')), },
@@ -30,6 +29,8 @@ die 'unknown pkgnum' unless $cust_pkg;
 my %change = map { $_ => scalar($cgi->param($_)) }
                  qw( locationnum pkgpart );
 
+$change{'keep_dates'} = 1;
+
 if ( $cgi->param('locationnum') == -1 ) {
   my $cust_location = new FS::cust_location {
     'custnum' => $cust_pkg->custnum,