Changeset 2133355
- Timestamp:
- 08/03/2019 03:23:41 PM (7 years ago)
- Location:
- mondoplayer/trunk
- Files:
-
- 2 edited
-
includes/class_mondoplayer_post.php (modified) (1 diff)
-
mondoplayer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mondoplayer/trunk/includes/class_mondoplayer_post.php
r2133329 r2133355 146 146 if ($object_html) { 147 147 $images_names = array(); 148 $startpos = strpos($object_html, "<script");148 $startpos = mb_strpos($object_html, "<script"); 149 149 while ($startpos > 0) { 150 $endpos = strpos($object_html, '</script>', $startpos);150 $endpos = mb_strpos($object_html, '</script>', $startpos); 151 151 if ($endpos < $startpos) { 152 152 break; 153 153 } 154 154 $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"); 158 158 while ($startpos > 0) { 159 $endpos = strpos($object_html, '</style>', $startpos);159 $endpos = mb_strpos($object_html, '</style>', $startpos); 160 160 if ($endpos < $startpos) { 161 161 break; 162 162 } 163 163 $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"); 165 165 } 166 166 -
mondoplayer/trunk/mondoplayer.php
r2133330 r2133355 5 5 Description: Video Content Curation Plugin - automatically curate and share videos. Boost engagement on your website and in social media with compelling video. 6 6 Author: MondoTag 7 Version: 1.0.7 77 Version: 1.0.78 8 8 Tested up to: 5.0 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.