Changeset 2532172
- Timestamp:
- 05/15/2021 11:53:01 AM (5 years ago)
- Location:
- wp-tradingview/trunk
- Files:
-
- 8 edited
-
inc/admin_page.php (modified) (2 diffs)
-
inc/class_chart.php (modified) (1 diff)
-
inc/class_chat.php (modified) (1 diff)
-
inc/class_ideastream.php (modified) (1 diff)
-
inc/class_ideaview.php (modified) (1 diff)
-
inc/class_profile.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
tradingview.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-tradingview/trunk/inc/admin_page.php
r1598558 r2532172 542 542 'class' => 'tv-color-field', 543 543 'value' => esc_attr($ideastream_data['borderColor']), 544 'data-default-color' => esc_attr( $ profile_data['borderColor'] ),544 'data-default-color' => esc_attr( $ideastream_data['borderColor'] ), 545 545 'option_name' => $ideastream_option_name 546 546 ) … … 666 666 'height' => '410', 667 667 'heightpop'=> 1, 668 'autosize' => '', 668 669 'locale' => 'en' 669 670 ); -
wp-tradingview/trunk/inc/class_chart.php
r1559115 r2532172 442 442 } 443 443 } 444 add_action('widgets_init', create_function('', register_widget(new widget_TradingView_chart)));444 add_action('widgets_init', function(){return register_widget('widget_TradingView_chart');}); 445 445 ?> -
wp-tradingview/trunk/inc/class_chat.php
r1559115 r2532172 214 214 } 215 215 } 216 add_action('widgets_init', create_function('', register_widget(new widget_TradingView_chat)));216 add_action('widgets_init', function(){return register_widget('widget_TradingView_chat');}); 217 217 ?> -
wp-tradingview/trunk/inc/class_ideastream.php
r1559115 r2532172 287 287 } 288 288 289 add_action('widgets_init', create_function('', register_widget(new widget_TradingView_ideastream)));289 add_action('widgets_init', function(){return register_widget('widget_TradingView_ideastream');}); 290 290 291 291 ?> -
wp-tradingview/trunk/inc/class_ideaview.php
r1559115 r2532172 153 153 } 154 154 } 155 add_action('widgets_init', create_function('', register_widget(new widget_TradingView_ideaview)));155 add_action('widgets_init', function(){return register_widget('widget_TradingView_ideaview');}); 156 156 ?> -
wp-tradingview/trunk/inc/class_profile.php
r1559115 r2532172 176 176 } 177 177 178 add_action('widgets_init', create_function('', register_widget(new widget_TradingView_profile)));178 add_action('widgets_init', function(){return register_widget('widget_TradingView_profile');}); 179 179 180 180 ?> -
wp-tradingview/trunk/readme.txt
r1598619 r2532172 3 3 Contributors: tradepips 4 4 Tags: forex, stocks, finance, investment, trading, ideas, tradingview, tradepips, widget, shortcode, pips, lots, margin, tickers, charts, instruments, indicators, trade, yahoo finance, google finance, money, us dollar, eurusd, gbpusd, usdjpy, forex widgets, forex plugin, wordpress forex 5 Requires at least: 3.56 Tested up to: 4.7.27 Stable tag: 1. 55 Requires at least: 4.7 6 Tested up to: 5.7.2 7 Stable tag: 1.6 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 49 49 == Changelog == 50 50 51 = 1.6 = 52 53 * Maintenance release 54 * Replaced deprecated create_function with anonymous functions in widget initializations 55 * Fixed minor ('undefined') debug log notices 56 51 57 = 1.5 = 52 58 … … 59 65 * Profile widget embed code width/height value errors fixed 60 66 * Width/height type (px or %) selection bypassed from the display function 61 62 67 * Removed an erroneous links from embed commodities 63 64 68 * Updated the tv.js url to the s3.tradingview.com/tv.js 65 69 -
wp-tradingview/trunk/tradingview.php
r1598648 r2532172 4 4 Plugin URI: http://tradepips.com 5 5 Description: WP Trading View - Display TradingView Profile, TradingView ideas, chat widget or forex / stock charts. 6 Version: 1. 56 Version: 1.6 7 7 Author: Trade Pips 8 8 Author URI: http://tradepips.com
Note: See TracChangeset
for help on using the changeset viewer.