Plugin Directory

Changeset 1218227


Ignore:
Timestamp:
08/11/2015 02:05:22 PM (10 years ago)
Author:
Neilgaiman
Message:

0.1.2 - Fixed a major bug

Location:
publicize-with-hashtags/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • publicize-with-hashtags/trunk/publicize-with-hashtags.php

    r1217775 r1218227  
    33Plugin Name: Publicize With Hashtags
    44Description: Automatically append hashtags to any content sent by Jetpack's Publicize module: hashtags will be created using post tags: dupe check and an optional length-based threshold are also included.
    5 Version: 0.1.1
     5Version: 0.1.2
    66License: GPL
    77Author: Darkseal
     
    4949    foreach ($ta as $t) {
    5050        // Create the hashtag, stripping spaces if needed.
    51         $ht = '#' . ($strip_spaces) ? str_replace(' ', '', $t->name) : $t->name;
     51        $ht = '#' . (($strip_spaces) ? str_replace(' ', '', $t->name) : $t->name);
    5252        // only process newly-added hashtags, skipping duplicate ones
    5353        if (stripos($mess,$ht) === false) {
  • publicize-with-hashtags/trunk/readme.txt

    r1217775 r1218227  
    5050== Changelog ==
    5151
     52= 0.1.2 =
     53* Fixed a bug in hashtags generation
     54
    5255= 0.1.1 =
    5356* Added an explicative screenshot
     
    5962
    6063== Upgrade Notice ==
     64
     65= 0.1.2 =
     66* Fixed a major bug
    6167
    6268= 0.1.1 =
Note: See TracChangeset for help on using the changeset viewer.