[Solved] Small error in ps_order_delivery.php
Posted: 25 Aug 2009, 15:18
Hi, I've found this little error.
In file:
administrator/components/com_virtuemart/classes/ps_order_delivery.php
At line 447:
$msg = sprintf ($VM_LANG->_('VM_DELIVERY_REALLY_OBLITERATE ')," %08d",$db->f('delivery_id'));
Correct is:
$msg = sprintf ($VM_LANG->_('VM_DELIVERY_REALLY_OBLITERATE')," %08d",$db->f('delivery_id'));
There is a "space" and when you perform OBLITERATE the error message don't show the warning message.
Bye
In file:
administrator/components/com_virtuemart/classes/ps_order_delivery.php
At line 447:
$msg = sprintf ($VM_LANG->_('VM_DELIVERY_REALLY_OBLITERATE ')," %08d",$db->f('delivery_id'));
Correct is:
$msg = sprintf ($VM_LANG->_('VM_DELIVERY_REALLY_OBLITERATE')," %08d",$db->f('delivery_id'));
There is a "space" and when you perform OBLITERATE the error message don't show the warning message.
Bye