Plugin Directory

Changeset 1179598


Ignore:
Timestamp:
06/12/2015 12:25:38 PM (11 years ago)
Author:
expresscurate
Message:

new version v2.1.2 with changes:

  • Miscellaneous bug fixes and improvements.
Location:
expresscurate/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • expresscurate/trunk/ExpressCurate.php

    r1179063 r1179598  
    55  Plugin URI: http://www.expresscurate.com/products
    66  Description: ExpressCurate plugin is a content curation tool for WordPress. It enables you to create and publish high quality content within minutes.
    7   Version: 2.1.1
     7  Version: 2.1.2
    88  Author: ExpressCurate
    99  Author URI: http://www.expresscurate.com
  • expresscurate/trunk/ExpressCurate_FeedManager.php

    r1179090 r1179598  
    449449        }
    450450       
    451         $blockWords = split(',', trim(get_option('expresscurate_content_stop_keywords', '')));
     451        $blockWords = split(', ', trim(get_option('expresscurate_content_stop_keywords', '')));
    452452        $blockWords = empty($blockWords) ? false : $blockWords;
    453453       
     
    504504                    }
    505505                }
    506                
    507506               
    508507                $keywords = $html_parser->analyzeKeywords();
  • expresscurate/trunk/ExpressCurate_HtmlParser.php

    r1179063 r1179598  
    563563        $escaped = array();
    564564        foreach ($words as $word) {
     565            $word = trim($word);
     566            if(empty($word)) {
     567                continue;
     568            }
    565569            $escaped[] = preg_quote($word);
     570        }
     571        if(empty($escaped)) {
     572            return false;
    566573        }
    567574        $escapedExp = implode('|', $escaped);
  • expresscurate/trunk/readme.txt

    r1179063 r1179598  
    55Requires at least: 3.9
    66Tested up to: 4.2.2
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.2
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    8181
    8282= How To Get Started =
    83 [Download ExpressCurate plugin](http://downloads.wordpress.org/plugin/expresscurate.2.1.1.zip "Your favorite content marketing tools") for WordPress. 
     83[Download ExpressCurate plugin](http://downloads.wordpress.org/plugin/expresscurate.2.1.2.zip "Your favorite content marketing tools") for WordPress. 
    8484You can also [download](http://www.expresscurate.com/p/products/wordpress-theme "Your favorite WordPress Theme") a **free** [ExpressCurate WordPress theme](http://www.expresscurate.com/p/products/wordpress-theme "Your favorite WordPress Theme"). It will give your curated content a modern online news look.
    8585
     
    132132== Changelog ==
    133133
     134= 2.1.2 =
     135* Miscellaneous bug fixes and improvements.
     136
    134137= 2.1.1 =
    135138* New Setting: Stop Keywords. Content Feed will filter out the posts that contain these stop words.
Note: See TracChangeset for help on using the changeset viewer.