View Issue Details

IDProjectCategoryView StatusLast Update
0001665module PayPalmodule PayPal - subpublic2012-12-10 16:11
ReporterMoehlis Assigned To 
PriorityhighSeveritymajorReproducibilityalways
Status resolvedResolutionno change required 
Summary0001665: PayPal-Express - user has no salutation
Descriptionwhen using paypal express, it seems the salutation is not set in the user object.

i just saw it in order.tpl:
[{assign var=_sal value=$oxcmp_user->oxuser__oxsal->value}]
[{oxmultilang ident="SALUTATION_$_sal" noerror="yes" alternative=$_sal }] 

simple fix:
[{ if $oxcmp_user->oxuser__oxsal->value }]
[{assign var=_sal value=$oxcmp_user->oxuser__oxsal->value}]
[{oxmultilang ident="SALUTATION_$_sal" noerror="yes" alternative=$_sal }] 
[{ /if }]


if the db entry has also no salutation (not tested), this may cause problems
TagsNo tags attached.

Relationships

related to 0001438 resolvedtomas_liubinas OXID eShop (all versions) Order and newsletter emails show MR or MRS instead of localized salutation 

Activities

tomas_liubinas

2010-02-22 10:33

reporter   ~0002363

Last edited: 2010-02-22 10:34

From the next version you can use it even simplier.
Changing:
[{$oxcmp_user->oxuser__oxsal->value}]
to:
[{$oxcmp_user->oxuser__oxsal->value|oxmultilangsal}]
should do the work.

birute_meilutyte

2010-02-22 10:39

reporter   ~0002364

@programmers: check, if latest paypal module templates contains this fix

arvydas_vapsva

2010-11-30 17:00

reporter   ~0003761

Last edited: 2010-12-01 09:02

latest module templates (v1.5.12) are OK