Changeset 612453
- Timestamp:
- 10/14/2012 11:22:00 PM (13 years ago)
- Location:
- wp-spreadshirt
- Files:
-
- 4 edited
- 1 copied
-
tags/1.5 (copied) (copied from wp-spreadshirt/trunk)
-
tags/1.5/readme.txt (modified) (2 diffs)
-
tags/1.5/wp-spreadshirt.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-spreadshirt.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-spreadshirt/tags/1.5/readme.txt
r595644 r612453 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.5 7 Stable tag: 1. 47 Stable tag: 1.5 8 8 9 9 Adding a shortcode to show your Spreadshirt-Articles in a page or post. … … 31 31 == Changelog == 32 32 33 = 1.5 = 34 * Link sanitizing: Removed the comma (,) from the article-links. 35 33 36 = 1.4 = 34 37 * 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 4 4 * Plugin URI: http://ppfeufer.de/wordpress-plugin/wp-spreadshirt/ 5 5 * Description: Adding a shortcode to show your Spreadshirt-Articles in a page or post. 6 * Version: 1. 46 * Version: 1.5 7 7 * Author: H.-Peter Pfeufer 8 8 * Author URI: http://ppfeufer.de … … 174 174 175 175 $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); 177 177 $var_sArticleUri = str_replace('.', '-', $var_sArticleUri); 178 178 $var_sArticleUri = str_replace(' ', '-', $var_sArticleUri); -
wp-spreadshirt/trunk/readme.txt
r595644 r612453 5 5 Requires at least: 3.0.1 6 6 Tested up to: 3.5 7 Stable tag: 1. 47 Stable tag: 1.5 8 8 9 9 Adding a shortcode to show your Spreadshirt-Articles in a page or post. … … 31 31 == Changelog == 32 32 33 = 1.5 = 34 * Link sanitizing: Removed the comma (,) from the article-links. 35 33 36 = 1.4 = 34 37 * 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 4 4 * Plugin URI: http://ppfeufer.de/wordpress-plugin/wp-spreadshirt/ 5 5 * Description: Adding a shortcode to show your Spreadshirt-Articles in a page or post. 6 * Version: 1. 46 * Version: 1.5 7 7 * Author: H.-Peter Pfeufer 8 8 * Author URI: http://ppfeufer.de … … 174 174 175 175 $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); 177 177 $var_sArticleUri = str_replace('.', '-', $var_sArticleUri); 178 178 $var_sArticleUri = str_replace(' ', '-', $var_sArticleUri);
Note: See TracChangeset
for help on using the changeset viewer.