Thread Starter
aous77
(@aous77)
to fix this you need to edit “insert-video-button.php” under “plugins\flowplayer5\admin\” and replace the following line
<option value="<? echo esc_attr( $post->ID ) ?>"><? echo esc_attr( $post->post_title ) ?></option>
with
<option value="<?php echo esc_attr( $post->ID ) ?>"><?php echo esc_attr( $post->post_title ) ?></option>
you forgot to add php in front of the <?
Plugin Author
Ulrich
(@grapplerulrich)
Thanks, it seems like my php version still worked with this error that is why I did not see it. It will be fixed in the next version.
Plugin Author
Ulrich
(@grapplerulrich)
It is fixed in this update.