Plugin Directory

Changeset 612453


Ignore:
Timestamp:
10/14/2012 11:22:00 PM (13 years ago)
Author:
ppfeufer
Message:

v1.5
Link sanitizing: Removed the comma (,) from the article-links.

Location:
wp-spreadshirt
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-spreadshirt/tags/1.5/readme.txt

    r595644 r612453  
    55Requires at least: 3.0.1
    66Tested up to: 3.5
    7 Stable tag: 1.4
     7Stable tag: 1.5
    88
    99Adding a shortcode to show your Spreadshirt-Articles in a page or post.
     
    3131== Changelog ==
    3232
     33= 1.5 =
     34* Link sanitizing: Removed the comma (,) from the article-links.
     35
    3336= 1.4 =
    3437* Changed the XML-URL for the API to prevent double entries. Thanks to [Thomas Sluyter](http://www.kilala.nl/) for the hint.
  • wp-spreadshirt/tags/1.5/wp-spreadshirt.php

    r595644 r612453  
    44 * Plugin URI: http://ppfeufer.de/wordpress-plugin/wp-spreadshirt/
    55 * Description: Adding a shortcode to show your Spreadshirt-Articles in a page or post.
    6  * Version: 1.4
     6 * Version: 1.5
    77 * Author: H.-Peter Pfeufer
    88 * Author URI: http://ppfeufer.de
     
    174174
    175175                            $var_sArticleUri = strtolower((string) $obj_ArticleData->name);
    176                             $var_sArticleUri = str_replace(array('ä', 'Ä', 'ö', 'Ö', 'ü', 'Ü', 'ß'), array('ae', 'ae', 'oe', 'oe', 'ue', 'ue', 'ss'), $var_sArticleUri);
     176                            $var_sArticleUri = str_replace(array(',', 'ä', 'Ä', 'ö', 'Ö', 'ü', 'Ü', 'ß'), array('', 'ae', 'ae', 'oe', 'oe', 'ue', 'ue', 'ss'), $var_sArticleUri);
    177177                            $var_sArticleUri = str_replace('.', '-', $var_sArticleUri);
    178178                            $var_sArticleUri = str_replace(' ', '-', $var_sArticleUri);
  • wp-spreadshirt/trunk/readme.txt

    r595644 r612453  
    55Requires at least: 3.0.1
    66Tested up to: 3.5
    7 Stable tag: 1.4
     7Stable tag: 1.5
    88
    99Adding a shortcode to show your Spreadshirt-Articles in a page or post.
     
    3131== Changelog ==
    3232
     33= 1.5 =
     34* Link sanitizing: Removed the comma (,) from the article-links.
     35
    3336= 1.4 =
    3437* Changed the XML-URL for the API to prevent double entries. Thanks to [Thomas Sluyter](http://www.kilala.nl/) for the hint.
  • wp-spreadshirt/trunk/wp-spreadshirt.php

    r595644 r612453  
    44 * Plugin URI: http://ppfeufer.de/wordpress-plugin/wp-spreadshirt/
    55 * Description: Adding a shortcode to show your Spreadshirt-Articles in a page or post.
    6  * Version: 1.4
     6 * Version: 1.5
    77 * Author: H.-Peter Pfeufer
    88 * Author URI: http://ppfeufer.de
     
    174174
    175175                            $var_sArticleUri = strtolower((string) $obj_ArticleData->name);
    176                             $var_sArticleUri = str_replace(array('ä', 'Ä', 'ö', 'Ö', 'ü', 'Ü', 'ß'), array('ae', 'ae', 'oe', 'oe', 'ue', 'ue', 'ss'), $var_sArticleUri);
     176                            $var_sArticleUri = str_replace(array(',', 'ä', 'Ä', 'ö', 'Ö', 'ü', 'Ü', 'ß'), array('', 'ae', 'ae', 'oe', 'oe', 'ue', 'ue', 'ss'), $var_sArticleUri);
    177177                            $var_sArticleUri = str_replace('.', '-', $var_sArticleUri);
    178178                            $var_sArticleUri = str_replace(' ', '-', $var_sArticleUri);
Note: See TracChangeset for help on using the changeset viewer.