View Issue Details

IDProjectCategoryView StatusLast Update
0003236OXID eShop (all versions)1.03. Basket, checkout processpublic2012-12-10 13:23
Reportertosam Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionunable to reproduce 
Product Version4.4.8 revision 34028 
Summary0003236: Oxremark deleting Comment during an order
DescriptionIf a customer makes an order and enters a comment (order_remark) the comment is saved properly. But in Case the customer wants to delete the comment on the last page, he goes back to the page cl=user and has to erase everything in the remark textarea. Then after taking the steps forward (cl=payment and then cl=order) he sees that the first made comment is still there. Nothing was deleted.
Additional InformationIn (Oxid CE 4.4.8) file /views/oxcmp_user.php on line 667 it is written:

$sOrderRemark = oxConfig::getParameter( 'order_remark', true );
        if ( $sOrderRemark ) {
            oxSession::setVar( 'ordrem', $sOrderRemark );
        }

by adding the following Line:

else {
            oxSession::setVar( 'ordrem', ' ' );
        }

the comment will be erased by entering a empty field.
TagsOrder
ThemeBasic
BrowserAll
PHP Versionany
Database Versionany

Activities

svetlana

2011-09-09 12:42

reporter   ~0005195

In patch this problem doesn't exist any more. Was fixed with other changes in previous versions.