completing the fix for the backslash problem (which is still anyway an ugly hack)

This commit is contained in:
real_nowhereman 2010-10-10 16:10:46 +00:00
parent b739d502f5
commit c52c7b72d2

View File

@ -101,9 +101,9 @@
} }
$entry = entry_prepare($entry); $new_entry = entry_prepare($entry);
if ($entry['categories']) if ($new_entry['categories'])
$entry['categories']=implode(',', $entry['categories']); $new_entry['categories']=implode(',', $entry['categories']);
else unset($entry['categories']); else unset($entry['categories']);
$string = utils_kimplode($entry); $string = utils_kimplode($entry);