Plugin Directory

Changeset 659907


Ignore:
Timestamp:
01/27/2013 10:33:16 PM (13 years ago)
Author:
nurungji
Message:

Bug fix : IE8 comment

Location:
hana-flv-player/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • hana-flv-player/trunk/hana-flv-player.php

    r659477 r659907  
    528528                <script type='text/javascript' src='".$this->plugin_url."/".$this->player_base[$player]."/build/mediaelement-and-player.min.js'></script>
    529529                <link rel='stylesheet' href='".$this->plugin_url."/".$this->player_base[$player]."/build/mediaelementplayer.mod.css' />
    530                 //due to the bug - IE8 does not show video
     530                <!-- due to the bug - IE8 does not show video -->
    531531                <!--[if IE 8]><style> .me-plugin { position: static; } </style><![endif]-->
    532532                </hana-ampersand>";
  • hana-flv-player/trunk/plugin_feed.php

    r659477 r659907  
    66$id=$_GET['id'];
    77
     8$default="<center>Thank you for using my plugin! Visit my website <a href='http://wpmarketing.org'>http://wpmarketing.org</a></center>";
    89if ( ! function_exists('curl_init')) {
    9    echo "<center>Thank you for using my plugin! Visit my website <a href='http://wpmarketing.org'>http://wpmarketing.org</a></center>";
    10    exit ;
     10    echo $default;
     11    exit ;
    1112}
    1213
     
    1819
    1920
    20 if ($output !== false) echo $output;
     21if ($output !== false)
     22    echo $output;
     23else
     24    echo $default;
     25   
    2126
    22 
Note: See TracChangeset for help on using the changeset viewer.