View Issue Details

IDProjectCategoryView StatusLast Update
0004196OXID eShop (all versions)1.03. Basket, checkout processpublic2012-12-10 13:22
ReporterFibreFoX 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.6.1 revision 45706 
Target VersionFixed in Version4.6.6 revision 54646 
Summary0004196: Reply-Field empty on Order-Mail from the owner
DescriptionI think there are parantesis missing:

        if ( $oUser->oxuser__oxusername->value != "admin" )
            $sFullName = $oUser->oxuser__oxfname->getRawValue() . " " . $oUser->oxuser__oxlname->getRawValue();
            $this->setReplyTo( $oUser->oxuser__oxusername->value, $sFullName );

should be:

        if ( $oUser->oxuser__oxusername->value != "admin" ){
            $sFullName = $oUser->oxuser__oxfname->getRawValue() . " " . $oUser->oxuser__oxlname->getRawValue();
            $this->setReplyTo( $oUser->oxuser__oxusername->value, $sFullName );
        }
Steps To Reproducelook at oxemail.php in method "sendOrderEmailToOwner" (its line 633 for me)
TagsOrder
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Activities

There are no notes attached to this issue.