Plugin Directory

Changeset 2133355


Ignore:
Timestamp:
08/03/2019 03:23:41 PM (7 years ago)
Author:
crisworth
Message:

autopilot improvements

Location:
mondoplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mondoplayer/trunk/includes/class_mondoplayer_post.php

    r2133329 r2133355  
    146146        if ($object_html) {
    147147            $images_names = array();
    148             $startpos = strpos($object_html, "<script");
     148            $startpos = mb_strpos($object_html, "<script");
    149149            while ($startpos > 0) {
    150                 $endpos = strpos($object_html, '</script>', $startpos);
     150                $endpos = mb_strpos($object_html, '</script>', $startpos);
    151151                if ($endpos < $startpos) {
    152152                    break;
    153153                }
    154154                $object_html = substr($object_html, 0, $startpos) . substr($object_html, $endpos + 9);
    155                 $startpos = strpos($object_html, "<script");
    156             }
    157             $startpos = strpos($object_html, "<style");
     155                $startpos = mb_strpos($object_html, "<script");
     156            }
     157            $startpos = mb_strpos($object_html, "<style");
    158158            while ($startpos > 0) {
    159                 $endpos = strpos($object_html, '</style>', $startpos);
     159                $endpos = mb_strpos($object_html, '</style>', $startpos);
    160160                if ($endpos < $startpos) {
    161161                    break;
    162162                }
    163163                $object_html = substr($object_html, 0, $startpos) . substr($object_html, $endpos + 8);
    164                 $startpos = strpos($object_html, "<style");
     164                $startpos = mb_strpos($object_html, "<style");
    165165            }
    166166
  • mondoplayer/trunk/mondoplayer.php

    r2133330 r2133355  
    55    Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video.
    66    Author: MondoTag
    7     Version: 1.0.77
     7    Version: 1.0.78
    88    Tested up to: 5.0
    99    License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.