Christoph, I had a look at the code and found that it does not take into account the case where Couch tables are configured to use a 'prefix' (as seems to be in your case).
To rectify the issue, please find the following line (line 85 currently) -
- and modify it to this
Hope this helps.
To rectify the issue, please find the following line (line 85 currently) -
- Code: Select all
<cms:query sql="SELECT p.modification_date FROM couch_pages p WHERE p.template_id = '<cms:show k_template_id/>'">
- and modify it to this
- Code: Select all
<cms:query sql="SELECT p.modification_date FROM <cms:php>echo K_TBL_PAGES;</cms:php> p WHERE p.template_id = '<cms:show k_template_id/>'">
Hope this helps.