
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
Windows XP, IE 6. FF 1.5.0.5
|
|
|
/admin/includes/editcontainer_js.cfm line 130 calls in the rule hint description. Hard break in some hints (ruleChildLinks, ruleRandomFacts, ruleNews, ruleHandPicked) appear to be causing an unterminated string literal.
Possible fix is to update the hint in each rule*.cfc and remove hard breaks. I have tested this and it does correct the issue.
Example change rule hint
FROM
<cfcomponent displayname="Child Links Rule" extends="rules"
hint="List teaser displays for the current navigation folders children.
Children content types are restricted to dmHTML, dmLink and dmInclude.
This publishing rule is commonly used on section landing pages to
build a summary for the pages in the section.">
TO
<cfcomponent displayname="Child Links Rule" extends="rules"
hint="List teaser displays for the current navigation folders children. Children content types are restricted to dmHTML, dmLink and dmInclude. This publishing rule is commonly used on section landing pages to build a summary for the pages in the section.">
Example hints as they appear in rendered JS causing issue.
oRules['ruleChildLinks'].hint = 'List teaser displays for the current navigation folders children.
Children content types are restricted to dmHTML, dmLink and dmInclude.
This publishing rule is commonly used on section landing pages to
build a summary for the pages in the section.';
|
|
Description
|
/admin/includes/editcontainer_js.cfm line 130 calls in the rule hint description. Hard break in some hints (ruleChildLinks, ruleRandomFacts, ruleNews, ruleHandPicked) appear to be causing an unterminated string literal.
Possible fix is to update the hint in each rule*.cfc and remove hard breaks. I have tested this and it does correct the issue.
Example change rule hint
FROM
<cfcomponent displayname="Child Links Rule" extends="rules"
hint="List teaser displays for the current navigation folders children.
Children content types are restricted to dmHTML, dmLink and dmInclude.
This publishing rule is commonly used on section landing pages to
build a summary for the pages in the section.">
TO
<cfcomponent displayname="Child Links Rule" extends="rules"
hint="List teaser displays for the current navigation folders children. Children content types are restricted to dmHTML, dmLink and dmInclude. This publishing rule is commonly used on section landing pages to build a summary for the pages in the section.">
Example hints as they appear in rendered JS causing issue.
oRules['ruleChildLinks'].hint = 'List teaser displays for the current navigation folders children.
Children content types are restricted to dmHTML, dmLink and dmInclude.
This publishing rule is commonly used on section landing pages to
build a summary for the pages in the section.';
|
Show » |
|