Here’s something which is quite puzzling (as it used to work well until a few days ago and then it stopped, although no site/server/db migration or upgrade have been done as far as I know)
A simple exp:weblog:entries which is generating a list of ids, and then an embedded template to show more data about these entries.
{exp:weblog:entries
weblog="video"
dynamic="off"
search:video_type="=finished"
orderby="view_count_one"
sort="desc"
limit="5"
cache='yes' refresh='5' disable='categories|member_data|trackbacks'
}
entry_id: {entry_id}
{embed="films/_film" entry_id="{entry_id}"}
{/exp:weblog:entries}..and the content of the films/_film template (stripped to the bare minimum for testing):
| embed:entry_id: {embed:entry_id}This is what I get:
entry_id: 312 | embed:entry_id: 312
entry_id: 2504 | embed:entry_id: 312
entry_id: 1271 | embed:entry_id: 312
entry_id: 2111 | embed:entry_id: 312
entry_id: 2118 | embed:entry_id: 312
Please let me know if you need more information to figure out what may be causing this problem.