Skip to content

Commit

Permalink
[BUGFIX] Assets ViewHelper. the argument "moveable" is misinterpreted. (
Browse files Browse the repository at this point in the history
FluidTYPO3#1058)

If "moveable" is "true" then assertAllowedInFooter gives back "false"
  • Loading branch information
monosize authored and NamelessCoder committed Jun 23, 2016
1 parent fe836b2 commit 5e17260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/ViewHelpers/Asset/AbstractAssetViewHelper.php
Original file line number Diff line number Diff line change
@@ -543,7 +543,7 @@ public function assertDebugEnabled()
public function assertAllowedInFooter()
{
$settings = $this->getAssetSettings();
return (isset($settings['movable']) && !$settings['movable']);
return (isset($settings['movable']) && $settings['movable']);
}

/**

0 comments on commit 5e17260

Please sign in to comment.