Changeset 889596
- Timestamp:
- 04/08/2014 07:43:20 PM (12 years ago)
- Location:
- photostream-sync
- Files:
-
- 4 edited
- 1 copied
-
tags/2.1.1 (copied) (copied from photostream-sync/trunk)
-
tags/2.1.1/class-photostream-client.php (modified) (1 diff)
-
tags/2.1.1/readme.txt (modified) (2 diffs)
-
trunk/class-photostream-client.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
photostream-sync/tags/2.1.1/class-photostream-client.php
r886424 r889596 93 93 return sprintf( 94 94 'https://p%s-sharedstreams.icloud.com/%s/sharedstreams/%s', 95 str_pad( max( 1, abs( intval( $this->shard) ) ), 2, '0', STR_PAD_LEFT ),95 str_pad( max( 1, abs( intval( base_convert( $this->shard, 36, 10 ) ) ) ), 2, '0', STR_PAD_LEFT ), 96 96 $this->key, 97 97 rawurlencode( $type ) -
photostream-sync/tags/2.1.1/readme.txt
r886424 r889596 5 5 Requires at least: 3.8 6 6 Tested up to: 3.8 7 Stable tag: 2.1 7 Stable tag: 2.1.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 87 87 == Changelog == 88 = 2.1.1 = 89 * Fix a bug where a valid url would fail to validate when attempting to add it to the site. 90 88 91 = 2.1 = 89 92 * Updated the plugin user interface to match the modern mobile friendly design introduced in WordPress 3.8. -
photostream-sync/trunk/class-photostream-client.php
r886424 r889596 93 93 return sprintf( 94 94 'https://p%s-sharedstreams.icloud.com/%s/sharedstreams/%s', 95 str_pad( max( 1, abs( intval( $this->shard) ) ), 2, '0', STR_PAD_LEFT ),95 str_pad( max( 1, abs( intval( base_convert( $this->shard, 36, 10 ) ) ) ), 2, '0', STR_PAD_LEFT ), 96 96 $this->key, 97 97 rawurlencode( $type ) -
photostream-sync/trunk/readme.txt
r886424 r889596 5 5 Requires at least: 3.8 6 6 Tested up to: 3.8 7 Stable tag: 2.1 7 Stable tag: 2.1.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 87 87 == Changelog == 88 = 2.1.1 = 89 * Fix a bug where a valid url would fail to validate when attempting to add it to the site. 90 88 91 = 2.1 = 89 92 * Updated the plugin user interface to match the modern mobile friendly design introduced in WordPress 3.8.
Note: See TracChangeset
for help on using the changeset viewer.