]> git.mjollnir.org Git - s9y.git/commitdiff
fix parse error
authorgarvinhicking <garvinhicking>
Mon, 24 Oct 2005 10:13:37 +0000 (10:13 +0000)
committergarvinhicking <garvinhicking>
Mon, 24 Oct 2005 10:13:37 +0000 (10:13 +0000)
docs/NEWS
include/admin/import.inc.php

index 39b7636833f620bbead00f4ab8d36a476e7f8bbe..43dfa75780b2b1a37afbd3b59080926cd6321875 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -3,6 +3,9 @@
 Version 0.9-beta4 ()
 ------------------------------------------------------------------------
 
+    * Fix a parse error in the Importer, introduced in beta3
+      (garvinhicking)
+
     * Show installed plugin versions in plugin overview (garvinhicking)
 
 Version 0.9-beta3 (October 21st, 2005)
index 37ded5c179f669d81c230d8d7bcac8ac56183bc4..731451c9e1fae6870078527f754ab36b12233586 100644 (file)
@@ -65,7 +65,7 @@ class Serendipity_Import {
             
             case 'UTF-8':
             default:
-                $out = utf8_decode($string)
+                $out = utf8_decode($string);
                 return $out;
         }
     }