Changeset 53149 for trunk/src/wp-includes/media.php
- Timestamp:
- 04/12/2022 05:16:46 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r53028 r53149 1858 1858 $content = str_replace( $match[0], $filtered_image, $content ); 1859 1859 } 1860 1861 /* 1862 * Unset image lookup to not run the same logic again unnecessarily if the same image tag is used more than 1863 * once in the same blob of content. 1864 */ 1865 unset( $images[ $match[0] ] ); 1860 1866 } 1861 1867 … … 1872 1878 $content = str_replace( $match[0], $filtered_iframe, $content ); 1873 1879 } 1880 1881 /* 1882 * Unset iframe lookup to not run the same logic again unnecessarily if the same iframe tag is used more 1883 * than once in the same blob of content. 1884 */ 1885 unset( $iframes[ $match[0] ] ); 1874 1886 } 1875 1887 }
Note: See TracChangeset
for help on using the changeset viewer.