Doppeltes Umwandeln von " in " verhindern.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 31 Jan 2008 12:01:34 +0000 (12:01 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 31 Jan 2008 12:01:34 +0000 (12:01 +0000)
bin/mozilla/io.pl
bin/mozilla/oe.pl

index aa5c248..a43a493 100644 (file)
@@ -239,9 +239,6 @@ sub display_row {
     $linetotal      = $form->round_amount(($form->{"sellprice_$i"} - $discount) / $price_factor, $decimalplaces);
     $linetotal      = $form->round_amount($linetotal * $form->{"qty_$i"}, 2);
 
-    # convert " to &quot;
-    map { $form->{"${_}_$i"} =~ s/\"/&quot;/g } qw(partnumber description unit unit_old);
-
     $column_data{runningnumber} = $cgi->textfield(-name => "runningnumber_$i", -size => 5,  -value => $i);    # HuT
     $column_data{partnumber}    = $cgi->textfield(-name => "partnumber_$i",    -size => 12, -value => $form->{"partnumber_$i"});
     $column_data{description} = ((($rows = $form->numtextrows($form->{"description_$i"}, 30, 6)) > 1) # if description is too large, use a textbox instead
index 2a90fc6..ba11452 100644 (file)
@@ -134,6 +134,7 @@ sub add {
 sub edit {
   $lxdebug->enter_sub();
 
+  $form->{"Watchdog::description_3"} = 1;
   check_oe_access();
 
   # show history button
@@ -319,7 +320,6 @@ sub prepare_order {
     $form->{"discount_$i"}  = $form->format_amount(\%myconfig, $form->{"discount_$i"} * ($form->{id} ? 100 : 1));
     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
     $form->{"qty_$i"}       = $form->format_amount(\%myconfig, $form->{"qty_$i"});
-    map { $form->{"${_}_$i"} =~ s/\"/&quot;/g } qw(partnumber description unit);
   }
 
   $lxdebug->leave_sub();