Possible Typo in Code
-
About 90% of the way down easy-facebook-likebox.php there is this line:
$responsive = ( $responsive == 1 ) ? 'data-adapt-container-widthtrue' : 'data-adapt-container-width=false';
I believe the first part, it being true, should include the ‘=’ sign as well, to be
$responsive = ( $responsive == 1 ) ? 'data-adapt-container-width=true' : 'data-adapt-container-width=false';
because the front-end output doesn’t recognize it as a valid attribute otherwise.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Possible Typo in Code’ is closed to new replies.