Problem with UTF8 characters in state listing (GR)

Please post your issues and questions about One Page Checkout for Virtuemart 2 to this forum.

Problem with UTF8 characters in state listing (GR)

Postby admin » Thu Jun 07, 2012 12:28 am

EDIT: This is fixed in version 2.0.63 and later, you don't need to edit the code.

We've been reported about a problem with state listing's UTF encoding which can be fixed (untill we release 2.0.57 version) by editing file:
\components\com_onepage\helpers\loader.php

around line 385 in function getStateList(...
Code: Select all
  $html .= '<option value="'.$state->virtuemart_state_id.'">'.htmlentities($state->state_name).'</option>';


should be set to:
Code: Select all
$html .= '<option value="'.$state->virtuemart_state_id.'">'.$state->state_name.'</option>';


We apologize for this problem and the bug fix will be released in next build (2.0.57) which will also include a language editor for missing front end variables and also for 3rd party extensions.

Kind Regards,
Stan
admin
Site Admin
 
Posts: 2708
Joined: Wed Jan 06, 2010 11:43 pm

Return to One Page Checkout for Virtuemart 2