Skip to content

Instantly share code, notes, and snippets.

@degerstrom
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save degerstrom/9717cf3564d57e2c5c9a to your computer and use it in GitHub Desktop.

Select an option

Save degerstrom/9717cf3564d57e2c5c9a to your computer and use it in GitHub Desktop.
VC helpers syntax error
// Line 96 in js_composer/include/helpers/helpers.php has:
$thumbnail = '<img ' . vc_array_to_attr_string( $attributes ) . '" />';
// But it should be
$thumbnail = '<img ' . vc_array_to_attr_string( $attributes ) . ' />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment