terms with foreign character get messed
deep - July 25, 2007 - 19:37
| Project: | Leech |
| Version: | 5.x-1.x-dev |
| Component: | leech_feed_taxonomy |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Due to line in
function leech_feed_taxonomy_create_vocabulary_items($node, $categories) {
this line
$category_name = strtolower($category_name['VALUE']);
should be changed to
$category_name = mb_strtolower($category_name['VALUE']);

#1
Fixed and committed to 5.x branch: http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/leech/leech...
#2