there is a small typo (missing semicolon) in include/admin/import.inc.php, here comes the cure (diff -u)
Code: Select all
--- import.inc.php.orig 2005-10-24 22:14:05.000000000 +0200
+++ import.inc.php 2005-10-24 22:14:17.000000000 +0200
@@ -65,7 +65,7 @@
case 'UTF-8':
default:
- $out = utf8_decode($string)
+ $out = utf8_decode($string);
return $out;
}
}
bb