Changeset 945699
- Timestamp:
- 07/09/2014 04:08:23 PM (12 years ago)
- Location:
- html-cleanup/trunk
- Files:
-
- 2 edited
-
html-cleanup.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
html-cleanup/trunk/html-cleanup.php
r727596 r945699 4 4 Plugin URI: https://davidlyness.com/plugins/html-cleanup 5 5 Description: A plugin to replace or remove lines of HTML generated by Wordpress and other plugins based on predefined regular expressions. 6 Version: 1.2. 16 Version: 1.2.2 7 7 Author: David Lyness 8 8 Author URI: https://davidlyness.com … … 15 15 // Do the actual filtering by performing regex search & replace operations 16 16 function html_cleanup_callback($buffer) { 17 $cleanupOverride = $_GET['cleanupoverride'];18 17 if ((!is_admin()) && ((!isset($_GET['cleanupoverride'])) || ($_GET['cleanupoverride'] !== get_option('cleanup_override'))) && (get_option('blacklisted_patterns'))) { 19 18 if (get_option('blacklist_replace_flag')) { -
html-cleanup/trunk/readme.txt
r894716 r945699 47 47 == Changelog == 48 48 49 = 1.2.2 = 50 * Ensure PHP doesn't generate a notice regarding an undefined index. 51 49 52 = 1.2.1 = 50 53 * Compatibility with versions of PHP prior to v5.3. … … 64 67 == Upgrade Notice == 65 68 66 = 1.2. 1=67 HTML Cleanup is now compatible with versions of PHP prior to v5.3.69 = 1.2.2 = 70 HTML Cleanup now no longer causes PHP to generate a notice regarding an undefined index.
Note: See TracChangeset
for help on using the changeset viewer.