Skip to content

Commit

Permalink
Merge pull request #12067 from rwjblue/prevent-looking-for-wacky-things
Browse files Browse the repository at this point in the history
[BUGFIX release] Prevent helper:@content-helper lookups.
  • Loading branch information
rwjblue committed Aug 12, 2015
2 parents 6ccfe04 + ce78d30 commit 0d5f11b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/ember-htmlbars/lib/hooks/link-render-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export default function linkRenderNode(renderNode, env, scope, path, params, has
case 'unless':
case 'if': params[0] = shouldDisplay(params[0]); break;
case 'each': params[0] = eachParam(params[0]); break;
case '@content-helper': break;
default:
helper = findHelper(path, env.view, env);

Expand Down

0 comments on commit 0d5f11b

Please sign in to comment.