Bug Fix a bug with persian language

Basti

Administrator
Staff member
What might be is that they are not within the utf8 range, but not sure. ill give it a test today/tomorrow

EDIT:: i see you sorted it out. At least it shows correctly in my browser
 

Basti

Administrator
Staff member
Ohhh what a nasty error, wonder how long it has been there.

Ok open the file table_row_premium.html
this line:
Code:
<td><em>{$lng->g_category}</em>: <a href="{$list_url}/{$url_helper_cat}{$category}{$url_tail}">{$category_url}</a></td>
We have misplaced the category name into the url and url into the name

Change that line to the following
Code:
<td><em>{$lng->g_category}</em>: <a href="{$list_url}/{$url_helper_cat}{$category_url}{$url_tail}">{$category}</a></td>
That fixes it, thanks for detailed report and helping troubleshoot this :)
 
Top