From b5c832470d98432bb4c252d638572e9d28d44d54 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Thu, 14 Jul 2005 12:52:11 +0000 Subject: [PATCH] Try to Fix PHP5 bug with charset interpretation --- .../serendipity_event_spartacus.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } -- 2.39.5