Plugin Directory

Changeset 727596


Ignore:
Timestamp:
06/17/2013 06:40:45 PM (13 years ago)
Author:
davidlyness
Message:

Committing v1.2.1

Location:
html-cleanup
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • html-cleanup/trunk/html-cleanup.php

    r704380 r727596  
    44Plugin URI: https://davidlyness.com/plugins/html-cleanup
    55Description: A plugin to replace or remove lines of HTML generated by Wordpress and other plugins based on predefined regular expressions.
    6 Version: 1.2.0
     6Version: 1.2.1
    77Author: David Lyness
    88Author URI: https://davidlyness.com
     
    1111
    1212// File to get / set administrative options
    13 require_once(__DIR__ . '/settings.php');
     13require_once(dirname(__FILE__) . '/settings.php');
    1414
    1515// Do the actual filtering by performing regex search & replace operations
  • html-cleanup/trunk/settings.php

    r704380 r727596  
    3131        update_option('blacklisted_patterns', "");
    3232    }
    33     add_settings_field('html_cleanup_blacklisted_patterns', 'List of patterns to blacklist', 'text_html_cleanup_blacklist', 'html_cleanup', 'html_cleanup_blacklist_settings');
     33    add_settings_field('html_cleanup_blacklisted_patterns', 'Patterns to blacklist', 'text_html_cleanup_blacklist', 'html_cleanup', 'html_cleanup_blacklist_settings');
    3434   
    3535    register_setting('html_cleanup_group', 'blacklist_replace_flag');
Note: See TracChangeset for help on using the changeset viewer.