cool works for me as well 🙂 Thanks websmokers
Line 115:
if($align != 'center' or $align != 'left' or $align != 'right') {
Can be changed to this as well:
if($align != 'center' AND $align != 'left' AND $align != 'right') {
I was having the same error, I fixed it like this:
* Backup wp-contents/plugins/zd-youtube-flv-player/zd-youtube-flv-player.php
* Open wp-contents/plugins/zd-youtube-flv-player/zd-youtube-flv-player.php
* Go to line 115:
if($align != 'center' or $align != 'left' or $align != 'right') {
* Replace it with this:
$allowed_align = array("center","left","right");
if(!in_array($align,$allowed_align)) {
* Save and Upload.
I have reported it to Proloy (ZD Youtube FLV Player’s Developer) as well, so hopefully he will fix it pretty soon 🙂
-Salman