Modify ↓
Ticket #14097 (closed defect: fixed)
Sequential Nav broken in contentRenderer.cfc
| Reported by: | Fluid | Owned by: | |
|---|---|---|---|
| Priority: | blocker | Component: | General |
| Version: | 5.2 | Keywords: | |
| Cc: | Time planned: | 1d | |
| Time remaining: | 1d | Time spent: | 1d |
Description
Confirming Sequential Nav is broken per the forum post below and the code update offered does fix the issue :-D
http://www.getmura.com/forum/messages.cfm?threadid=11853965-E22C-4046-BE932533F0365A9B
Forum Post info:
The sequential nav in the 5.2.2271 will never run. In contentRenderer.cfc, line 855, you have the following code:
<cfcase value="portal_nav">#dspObject_Render(arguments.siteid,arguments.object,arguments.objectid,"nav/dsp_portal.cfm",cacheKeyContentId)#</cfcase>
<cfcase value="seq_nav">#dspObject_Render(arguments.siteid,arguments.object,arguments.objectid,"nav/dsp_portal.cfm","#arguments.object##arguments.objectid##event.getValue('startRow')#")#</cfcase>
This should be:
<cfcase value="portal_nav">#dspObject_Render(arguments.siteid,arguments.object,arguments.objectid,"nav/dsp_portal.cfm",cacheKeyContentId)#</cfcase>
<cfcase value="seq_nav">#dspObject_Render(arguments.siteid,arguments.object,arguments.objectid,"nav/dsp_sequential.cfm","#arguments.object##arguments.objectid##event.getValue('startRow')#")#</cfcase>
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

Real