From: garvinhicking Date: Fri, 9 Mar 2007 09:25:51 +0000 (+0000) Subject: Remove optimization, was causing trouble... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=45605f3b975d1714040de4b941b1aba6d982ba2c;p=s9y.git Remove optimization, was causing trouble... --- diff --git a/plugins/serendipity_event_entryproperties/serendipity_event_entryproperties.php b/plugins/serendipity_event_entryproperties/serendipity_event_entryproperties.php index c78b4f9..40cebae 100644 --- a/plugins/serendipity_event_entryproperties/serendipity_event_entryproperties.php +++ b/plugins/serendipity_event_entryproperties/serendipity_event_entryproperties.php @@ -598,10 +598,6 @@ class serendipity_event_entryproperties extends serendipity_event break; case 'frontend_entryproperties': - if (is_array($eventData[0]['properties'])) { - // Skip fetching entryproperties again, it has already been done in functions_entries::fetchEntry(). - return true; - } $and = $this->returnQueryCondition($is_cache); $q = "SELECT entryid, property, value FROM {$serendipity['dbPrefix']}entryproperties WHERE entryid IN (" . implode(', ', array_keys($addData)) . ") $and";