Changeset 893380
- Timestamp:
- 04/15/2014 05:03:36 AM (12 years ago)
- Location:
- bleep-filter/trunk
- Files:
-
- 3 edited
-
bleep_filter.php (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
-
wpadmin.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bleep-filter/trunk/bleep_filter.php
r803536 r893380 4 4 Plugin URI: http://www.filterplugin.com 5 5 Description: A better word filter that passively removes unwanted words from your wordpress site by easily capturing common misspellings and deliberate obfuscation 6 Version: 1. 06 Version: 1.1 7 7 Author: Nathan Lampe 8 8 Author URI: http://www.nathanlampe.com -
bleep-filter/trunk/readme.txt
r803525 r893380 1 1 === Bleep Filter === 2 Contributors: Nathan Lampe 3 Tags: profanity filter, word filter, content filter, phonetic filter, bleep filter2 Contributors: Nathan Lampe, Jan Pingel 3 Tags: profanity filter, swear filter, word filter, content filter, phonetic filter, bleep filter 4 4 Requires at least: 3.5.1 5 Tested up to: 3. 7.16 Stable tag: 1. 05 Tested up to: 3.8.3 6 Stable tag: 1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 == Description == 13 13 14 The Bleep Filter plugin is a free and open source advanced content filtering plugin for WordPress. Commonly used as a bad word filter , this plugin offers a variety of applications for your needs. Easily add the words you want to filter out and the plugin will find those words in your blog's comments, posts, and rss feeds and passively replace them in a variety of styles.14 The Bleep Filter plugin is a free and open source advanced content filtering plugin for WordPress. Commonly used as a bad word filter and swear filter, this plugin offers a variety of applications for your needs. Easily add the words you want to filter out and the plugin will find those words in your blog's comments, posts, and rss feeds and passively replace them in a variety of styles. 15 15 16 16 Using a highly advanced phonetic algorithm, not only is the spelling being detected but also how the word sounds. This makes it much more difficult for mischievous posters to bypass the filter intentionally. … … 42 42 43 43 == Changelog == 44 = 1.1 = 45 * Fix for PHP 5.4 csv importing 46 44 47 = 1.0 = 45 48 * improved word matching and performance … … 60 63 == Upgrade notice == 61 64 62 = 1. 0=63 This version now includes improved matching and performance. Can now replace bad words with a replacement word. 65 = 1.1 = 66 Updated to fix csv importing for PHP 5.4 -
bleep-filter/trunk/wpadmin.class.php
r803527 r893380 209 209 } 210 210 211 public function import_bleeps($ _FILES){211 public function import_bleeps($files){ 212 212 if ( is_admin() ) { 213 if($ _FILES){213 if($files){ 214 214 ini_set('auto_detect_line_endings',TRUE); 215 215 $csv = ''; 216 216 $type = ''; 217 if($ _FILES['bleep_words']){218 $csv = $ _FILES['bleep_words']['tmp_name'];217 if($files['bleep_words']){ 218 $csv = $files['bleep_words']['tmp_name']; 219 219 $type = "bleep_filter_words"; 220 220 } 221 elseif($ _FILES['bleep_exceptions']){222 $csv = $ _FILES['bleep_exceptions']['tmp_name'];221 elseif($files['bleep_exceptions']){ 222 $csv = $files['bleep_exceptions']['tmp_name']; 223 223 $type = "bleep_exception"; 224 224 }
Note: See TracChangeset
for help on using the changeset viewer.