Changeset 1421553
- Timestamp:
- 05/21/2016 03:32:12 PM (10 years ago)
- Location:
- libravatar-replace/trunk
- Files:
-
- 4 edited
-
README.md (modified) (1 diff)
-
classes/ServicesLibravatarExt.class.php (modified) (1 diff)
-
libravatar-replace.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libravatar-replace/trunk/README.md
r1391355 r1421553 131 131 ## Changelog ## 132 132 133 ### 3.2.1 ### 134 * Fixed exception on unknown avatar default 135 133 136 ### 3.2.0 ### 134 137 * We are now on GitHub! -
libravatar-replace/trunk/classes/ServicesLibravatarExt.class.php
r1327881 r1421553 23 23 } 24 24 25 return parent::processDefault($url); 25 try { 26 return parent::processDefault($url); 27 } catch (InvalidArgumentException $e) { 28 // do not fail if the default is incorrect, just ignore it 29 return null; 30 } 26 31 } 27 32 } -
libravatar-replace/trunk/libravatar-replace.php
r1327911 r1421553 5 5 * Plugin URI: http://code.sunchaser.info/libravatar 6 6 * Description: Libravatar support for WordPress and BuddyPress 7 * Version: 3.2. 07 * Version: 3.2.1 8 8 * Author: Christian Archer 9 9 * Author URI: https://sunchaser.info/ -
libravatar-replace/trunk/readme.txt
r1391355 r1421553 125 125 == Changelog == 126 126 127 = 3.2.1 = 128 * Fixed exception on unknown avatar default 129 127 130 = 3.2.0 = 128 131 * We are now on GitHub!
Note: See TracChangeset
for help on using the changeset viewer.