From c52c7b72d290d69b82bd6150980181acff68b0cd Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Sun, 10 Oct 2010 16:10:46 +0000 Subject: [PATCH] completing the fix for the backslash problem (which is still anyway an ugly hack) --- fp-includes/core/core.draft.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fp-includes/core/core.draft.php b/fp-includes/core/core.draft.php index 3602c14..6833fed 100644 --- a/fp-includes/core/core.draft.php +++ b/fp-includes/core/core.draft.php @@ -101,9 +101,9 @@ } - $entry = entry_prepare($entry); - if ($entry['categories']) - $entry['categories']=implode(',', $entry['categories']); + $new_entry = entry_prepare($entry); + if ($new_entry['categories']) + $new_entry['categories']=implode(',', $entry['categories']); else unset($entry['categories']); $string = utils_kimplode($entry);