Changeset 1692257
- Timestamp:
- 07/07/2017 04:12:18 AM (9 years ago)
- Location:
- author-showcase
- Files:
-
- 6 edited
-
tags/1.4/author_showcase.php (modified) (3 diffs)
-
tags/1.4/class_btbe_api_connections.php (modified) (2 diffs)
-
tags/1.4/readme.txt (modified) (2 diffs)
-
trunk/author_showcase.php (modified) (3 diffs)
-
trunk/class_btbe_api_connections.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
author-showcase/tags/1.4/author_showcase.php
r1675237 r1692257 2 2 /** 3 3 * @package Author_Showcase 4 * @version 1.4 4 * @version 1.4.1 5 5 */ 6 6 /* … … 9 9 Description: The Author Showcase is an all-in-one plugin for displaying an author's books on their site in a variety of convenient formats, using shortcodes or widgets. 10 10 Author: Claire Ryan 11 Version: 1.4 11 Version: 1.4.1 12 12 Author URI: http://raynfall.com/ 13 13 License: GPL v.2 … … 301 301 dbDelta($sql); 302 302 } 303 add_option( 'buybook_db_version', '1. 3.3' );303 add_option( 'buybook_db_version', '1.4.1' ); 304 304 } 305 305 -
author-showcase/tags/1.4/class_btbe_api_connections.php
r1675237 r1692257 62 62 $final = implode('&', $temp); 63 63 $url = 'https://' . $host . $path . '?' . $final; 64 $response = simplexml_load_file($url); 64 $ch = curl_init(); 65 $ch = curl_init(); 66 curl_setopt($ch, CURLOPT_URL, $url); 67 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 68 $output = curl_exec($ch); 69 curl_close($ch); 70 $response = simplexml_load_string($output); 65 71 return $response; 66 72 } … … 69 75 function btbe_goodreads($isbn, $goodreads_access) { 70 76 $ch = curl_init(); 71 curl_setopt($ch, CURLOPT_URL, "http ://www.goodreads.com/book/isbn?isbn=".$isbn."&key=".$goodreads_access);77 curl_setopt($ch, CURLOPT_URL, "https://www.goodreads.com/book/isbn?isbn=".$isbn."&key=".$goodreads_access); 72 78 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 73 79 $output = curl_exec($ch); -
author-showcase/tags/1.4/readme.txt
r1675237 r1692257 5 5 Requires at least: 4.0 6 6 Tested up to: 4.5 7 Stable tag: 1.4 7 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 == Changelog == 52 52 53 = 1.4.1 = 54 * Fixed an issue with GoodReads reviews not loading over HTTPS 55 53 56 = 1.4 = 54 57 * Added French and Portuguese (Brazil) translations -
author-showcase/trunk/author_showcase.php
r1675237 r1692257 2 2 /** 3 3 * @package Author_Showcase 4 * @version 1.4 4 * @version 1.4.1 5 5 */ 6 6 /* … … 9 9 Description: The Author Showcase is an all-in-one plugin for displaying an author's books on their site in a variety of convenient formats, using shortcodes or widgets. 10 10 Author: Claire Ryan 11 Version: 1.4 11 Version: 1.4.1 12 12 Author URI: http://raynfall.com/ 13 13 License: GPL v.2 … … 301 301 dbDelta($sql); 302 302 } 303 add_option( 'buybook_db_version', '1. 3.3' );303 add_option( 'buybook_db_version', '1.4.1' ); 304 304 } 305 305 -
author-showcase/trunk/class_btbe_api_connections.php
r1448926 r1692257 62 62 $final = implode('&', $temp); 63 63 $url = 'https://' . $host . $path . '?' . $final; 64 $response = simplexml_load_file($url); 64 $ch = curl_init(); 65 $ch = curl_init(); 66 curl_setopt($ch, CURLOPT_URL, $url); 67 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 68 $output = curl_exec($ch); 69 curl_close($ch); 70 $response = simplexml_load_string($output); 65 71 return $response; 66 72 } … … 69 75 function btbe_goodreads($isbn, $goodreads_access) { 70 76 $ch = curl_init(); 71 curl_setopt($ch, CURLOPT_URL, "http ://www.goodreads.com/book/isbn?isbn=".$isbn."&key=".$goodreads_access);77 curl_setopt($ch, CURLOPT_URL, "https://www.goodreads.com/book/isbn?isbn=".$isbn."&key=".$goodreads_access); 72 78 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 73 79 $output = curl_exec($ch); -
author-showcase/trunk/readme.txt
r1675237 r1692257 5 5 Requires at least: 4.0 6 6 Tested up to: 4.5 7 Stable tag: 1.4 7 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 == Changelog == 52 52 53 = 1.4.1 = 54 * Fixed an issue with GoodReads reviews not loading over HTTPS 55 53 56 = 1.4 = 54 57 * Added French and Portuguese (Brazil) translations
Note: See TracChangeset
for help on using the changeset viewer.