View Issue Details

IDProjectCategoryView StatusLast Update
0001483OXID eShop (all versions)1.02. Price calculations (discounts, coupons, additional costs etc.)public2012-12-10 13:27
Reporterkircma Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.2.0 revision 23610 
Fixed in Version4.3.0 revision 26948 
Summary0001483: Wrong message when entering an invalid VAT-ID during registration
DescriptionWhen entering an invalid VAT-ID during registration like "ATU12345678" the user is not registered but a wrong error description is displayed:
"VAT_MESSAGE_"
It seems that the exception message in oxonlinevatidcheck.php is not set correctly in this case.
TagsVAT
Theme
BrowserAll
PHP Versionany
Database Versionany

Activities

kircma

2009-11-17 11:37

reporter   ~0002077

Found the problem:
in line 72 the code doesn't have an assignment but a condition:
$sErrorMsg == 'ID_NOT_VALID';
is wrong, should be
$sErrorMsg = 'ID_NOT_VALID';

arvydas_vapsva

2009-11-18 10:23

reporter   ~0002097

fixed, thnx for notice!