From: garvinhicking Date: Thu, 14 Jul 2005 12:52:11 +0000 (+0000) Subject: Try to Fix PHP5 bug with charset interpretation X-Git-Tag: 0.9~307 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b5c832470d98432bb4c252d638572e9d28d44d54;p=s9y.git Try to Fix PHP5 bug with charset interpretation --- diff --git a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php index bf0eee3..097b405 100644 --- a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php +++ b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php @@ -63,7 +63,7 @@ class serendipity_event_spartacus extends serendipity_event $propbag->add('description', PLUGIN_EVENT_SPARTACUS_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Garvin Hicking'); - $propbag->add('version', '2.0'); + $propbag->add('version', '2.01'); $propbag->add('requirements', array( 'serendipity' => '0.9', 'smarty' => '2.6.7', @@ -257,6 +257,7 @@ class serendipity_event_spartacus extends serendipity_event } if ($decode_utf8) { + $data = str_replace('', '', $data); $this->decode($data); }