Changeset 1450672
- Timestamp:
- 07/07/2016 02:38:18 PM (10 years ago)
- Location:
- ustream-status/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
ustreamstatus.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ustream-status/trunk/readme.txt
r1233369 r1450672 10 10 Requires at least: 2.8.0 11 11 Tested up to: 4.3 12 Stable tag: 2.0. 212 Stable tag: 2.0.3 13 13 14 14 Display the online/offline status of a Ustream channel … … 125 125 == Changelog == 126 126 127 = 2.0.3 = 128 129 * Change the API call from http to https 130 131 127 132 = 2.0.2 = 128 133 -
ustream-status/trunk/ustreamstatus.php
r1233369 r1450672 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=R8S6WTYMY9SXG 7 7 Description: Display the online/offline status of a Ustream channel. 8 Version: 2.0. 28 Version: 2.0.3 9 9 Author: Katz Ueno 10 10 Author URI: http://katzueno.com/ … … 95 95 'http' => array( 'timeout' => 3 ) 96 96 )); 97 $UstStatusSerial = @file_get_contents('http ://api.ustream.tv/php/channel/' . $account . '/getValueOf/status',0,$opt);97 $UstStatusSerial = @file_get_contents('https://api.ustream.tv/php/channel/' . $account . '/getValueOf/status',0,$opt); 98 98 $UstStatusArray = unserialize($UstStatusSerial); 99 99 set_transient($transientName, $UstStatusArray, 60 ); … … 155 155 'http' => array( 'timeout' => 3 ) 156 156 )); 157 $UstStatusSerial = @file_get_contents('http ://api.ustream.tv/php/channel/' . $account . '/getValueOf/status',0,$opt);157 $UstStatusSerial = @file_get_contents('https://api.ustream.tv/php/channel/' . $account . '/getValueOf/status',0,$opt); 158 158 $UstStatusArray = unserialize($UstStatusSerial); 159 159 set_transient($transientName, $UstStatusArray, 60 );
Note: See TracChangeset
for help on using the changeset viewer.