Last active
August 29, 2015 14:25
-
-
Save degerstrom/9717cf3564d57e2c5c9a to your computer and use it in GitHub Desktop.
VC helpers syntax error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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