On a client’s site, one entry out of about 200 is appearing twice when I loop through the entries to create an XML file.
I checked the control panel as well as the exp_weblog_titles table and only see one occurrence of this entry (# 157).
The code being used is:
<members>{exp:weblog:entries weblog="businesses" disable="comments|member_data|pagination|trackbacks" limit="500" orderby="title" sort="asc"}
<member member_id="{entry_id}" pid="{pid}" url="{title_permalink="businesses"}" url_title="{url_title}" map_category="{map_category}">
<title><![CDATA[{exp:plaintext:convert}{title}{/exp:plaintext:convert}]]></title>
<snippet><![CDATA[{exp:plaintext:convert}{business_snippet}{/exp:plaintext:convert}]]></snippet>
<body><![CDATA[{business_body}]]></body>
<address><![CDATA[{exp:plaintext:convert}{street_address}{/exp:plaintext:convert}]]></address>
<updated>{edit_date format="{DATE_ATOM}"}</updated>
<categories><category id="{if map_category == 'Shop' }1{if:elseif map_category == 'Dine' }2{if:elseif map_category == 'Work' }3{if:elseif map_category == 'Play' }4{/if}">{exp:xml_encode}{map_category}{/exp:xml_encode}</category></categories>
</member>{/exp:weblog:entries}
</members>Has anyone run into this before?