Fixed
Details
Assignee
Michael OffnerMichael OffnerReporter
Bruce KirkpatrickBruce KirkpatrickPriority
MajorFix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneAffects versions
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Bruce Kirkpatrick
Bruce KirkpatrickPriority
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Affects versions
Created 19 November 2018 at 22:15
Updated 8 May 2020 at 18:48
Resolved 24 January 2020 at 11:48
If search query results is off, this throws error on the bundle admin page.
Please change #createdAsString# to #bundles.createdAsString# in info.bundle.list.cfm
Update: It appears this fix reveals more implicit scope errors.
In menu.cfm, the arguments are implicitly referenced, which needs this at the top:
<cfscript>
stMenu=arguments.stMenu;
adminType=arguments.adminType;
</cfscript>
variables.stText is defined in admin_layout.cfm, which appears to be the correct instance to refer to, but in web.cfm, you refer to it as just stText. Need this to fix:
<cfscript>
stText=variables.stText;
</cfscript>
<cfset navigation = stText.MenuStruct[request.adminType]>
I was able to view the bundles admin page under a more lucee-style configuration with these changes.