Changeset 870535
- Timestamp:
- 03/06/2014 11:36:45 AM (12 years ago)
- Location:
- show-stock-quotes/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
show_stock_quotes.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
show-stock-quotes/trunk/readme.txt
r870528 r870535 31 31 == Changelog == 32 32 33 = 1.4.1 = 34 - Fixed minor bug 35 33 36 = 1.4 = 34 37 - Option to change price color from normal (same color as ticker) to same color as change (green or red). -
show-stock-quotes/trunk/show_stock_quotes.php
r870528 r870535 4 4 Plugin URI: http://kylebenkapps.com/wordpress-plugins/ 5 5 Description: Show stock quotes updated in real-time. 6 Version: 1.4 6 Version: 1.4.1 7 7 Author: Kyle Benk 8 8 Author URI: http://kylebenkapps.com … … 188 188 189 189 $passed_data = array( 190 'out' => $out,190 'out' => isset($out) ? $out : array(), 191 191 'quote_display_color' => $ticker_info['quote_display_color'] 192 192 ); … … 198 198 //} 199 199 200 return $out;200 return isset($out) ? $out : array(); 201 201 } 202 202 }
Note: See TracChangeset
for help on using the changeset viewer.