Changeset 735181
- Timestamp:
- 07/02/2013 08:29:36 PM (13 years ago)
- Location:
- bitly-shortlinks-multisite/trunk
- Files:
-
- 2 edited
-
bitly-shortlinks-multisite.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitly-shortlinks-multisite/trunk/bitly-shortlinks-multisite.php
r729512 r735181 2 2 /* 3 3 Plugin Name: Bit.ly Shortlinks Multisite (OAuth 2 Compatible) 4 Version: 1. 14 Version: 1.2 5 5 Plugin URI: http://wordpress.org/extend/plugins/bitly-shortlinks-multisite/ 6 6 Description: This plugin replaces the default WordPress shortlinks with Bit.ly shortlinks for your single site or multisite WordPress network. … … 38 38 $resp = wpbitly_curl( $req ); 39 39 40 if ( is_array( $resp ) && $resp['status_code'] == 200 && $resp['data']['expand'][0]['long_url'] == $url ) 40 if ( is_array( $resp ) && $resp['status_code'] == 200 && isset($resp['data']['expand']) && $resp['data']['expand'][0]['long_url'] == $url ) 41 41 42 return false; 42 43 delete_post_meta( $id, '_denis_bitlylink' ); -
bitly-shortlinks-multisite/trunk/readme.txt
r729655 r735181 46 46 == Changelog == 47 47 48 = 1.2 = 49 * Fixed bug that occurs when `WP_ DEBUG` is on (Thanks to Luke Childs for the bug find.) 50 48 51 = 1.1 = 49 52 * Added `get_bitly()` function.
Note: See TracChangeset
for help on using the changeset viewer.