Changeset 3492666
- Timestamp:
- 03/27/2026 12:48:58 PM (32 hours ago)
- Location:
- xt-facebook-events
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.9 (copied) (copied from xt-facebook-events/trunk)
-
tags/1.1.9/includes/class-xt-facebook-events-facebook.php (modified) (1 diff)
-
tags/1.1.9/includes/class-xt-facebook-events-fb-authorize.php (modified) (2 diffs)
-
tags/1.1.9/xt-facebook-events.php (modified) (5 diffs)
-
trunk/includes/class-xt-facebook-events-facebook.php (modified) (1 diff)
-
trunk/includes/class-xt-facebook-events-fb-authorize.php (modified) (2 diffs)
-
trunk/xt-facebook-events.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xt-facebook-events/tags/1.1.9/includes/class-xt-facebook-events-facebook.php
r3286096 r3492666 46 46 $this->fb_app_id = isset( $options['facebook_app_id'] ) ? $options['facebook_app_id'] : ''; 47 47 $this->fb_app_secret = isset( $options['facebook_app_secret'] ) ? $options['facebook_app_secret'] : ''; 48 $this->fb_graph_url = 'https://graph.facebook.com/v 19.0/';48 $this->fb_graph_url = 'https://graph.facebook.com/v24.0/'; 49 49 $this->fb_access_token = isset( $xtfe_user_token_options['access_token'] ) ? $xtfe_user_token_options['access_token'] : ''; 50 50 add_shortcode( 'wpfb_events', array( $this, 'render_facebook_events' ) ); -
xt-facebook-events/tags/1.1.9/includes/class-xt-facebook-events-fb-authorize.php
r3286096 r3492666 35 35 $app_secret = isset( $xtfe_options['facebook_app_secret'] ) ? $xtfe_options['facebook_app_secret'] : ''; 36 36 $redirect_url = admin_url( 'admin-post.php?action=xtfe_facebook_authorize_callback' ); 37 $api_version = 'v 19.0';37 $api_version = 'v24.0'; 38 38 $param_url = urlencode($redirect_url); 39 39 $xtfe_session_state = md5( uniqid( wp_rand(), true ) ); … … 68 68 $app_secret = isset( $xtfe_options['facebook_app_secret'] ) ? $xtfe_options['facebook_app_secret'] : ''; 69 69 $redirect_url = admin_url('admin-post.php?action=xtfe_facebook_authorize_callback'); 70 $api_version = 'v 19.0';70 $api_version = 'v24.0'; 71 71 $param_url = urlencode($redirect_url); 72 72 -
xt-facebook-events/tags/1.1.9/xt-facebook-events.php
r3286096 r3492666 4 4 * Plugin URI: http://xylusthemes.com/plugins/xt-facebook-events/ 5 5 * Description: Display Facebook Events into your WordPress site anywhere. 6 * Version: 1.1. 86 * Version: 1.1.9 7 7 * Author: Xylus Themes 8 8 * Author URI: http://xylusthemes.com … … 31 31 */ 32 32 private static $instance; 33 public $common, $facebook, $admin, $fb_authorize ;33 public $common, $facebook, $admin, $fb_authorize, $common_pro; 34 34 35 35 /** … … 82 82 * @since 1.0.0 83 83 */ 84 public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1. 8' ); }84 public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1.9' ); } 85 85 86 86 /** … … 89 89 * @since 1.0.0 90 90 */ 91 public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1. 8' ); }91 public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1.9' ); } 92 92 93 93 … … 103 103 // Plugin version. 104 104 if( ! defined( 'XTFE_VERSION' ) ){ 105 define( 'XTFE_VERSION', '1.1. 8' );105 define( 'XTFE_VERSION', '1.1.9' ); 106 106 } 107 107 -
xt-facebook-events/trunk/includes/class-xt-facebook-events-facebook.php
r3286096 r3492666 46 46 $this->fb_app_id = isset( $options['facebook_app_id'] ) ? $options['facebook_app_id'] : ''; 47 47 $this->fb_app_secret = isset( $options['facebook_app_secret'] ) ? $options['facebook_app_secret'] : ''; 48 $this->fb_graph_url = 'https://graph.facebook.com/v 19.0/';48 $this->fb_graph_url = 'https://graph.facebook.com/v24.0/'; 49 49 $this->fb_access_token = isset( $xtfe_user_token_options['access_token'] ) ? $xtfe_user_token_options['access_token'] : ''; 50 50 add_shortcode( 'wpfb_events', array( $this, 'render_facebook_events' ) ); -
xt-facebook-events/trunk/includes/class-xt-facebook-events-fb-authorize.php
r3286096 r3492666 35 35 $app_secret = isset( $xtfe_options['facebook_app_secret'] ) ? $xtfe_options['facebook_app_secret'] : ''; 36 36 $redirect_url = admin_url( 'admin-post.php?action=xtfe_facebook_authorize_callback' ); 37 $api_version = 'v 19.0';37 $api_version = 'v24.0'; 38 38 $param_url = urlencode($redirect_url); 39 39 $xtfe_session_state = md5( uniqid( wp_rand(), true ) ); … … 68 68 $app_secret = isset( $xtfe_options['facebook_app_secret'] ) ? $xtfe_options['facebook_app_secret'] : ''; 69 69 $redirect_url = admin_url('admin-post.php?action=xtfe_facebook_authorize_callback'); 70 $api_version = 'v 19.0';70 $api_version = 'v24.0'; 71 71 $param_url = urlencode($redirect_url); 72 72 -
xt-facebook-events/trunk/xt-facebook-events.php
r3286096 r3492666 4 4 * Plugin URI: http://xylusthemes.com/plugins/xt-facebook-events/ 5 5 * Description: Display Facebook Events into your WordPress site anywhere. 6 * Version: 1.1. 86 * Version: 1.1.9 7 7 * Author: Xylus Themes 8 8 * Author URI: http://xylusthemes.com … … 31 31 */ 32 32 private static $instance; 33 public $common, $facebook, $admin, $fb_authorize ;33 public $common, $facebook, $admin, $fb_authorize, $common_pro; 34 34 35 35 /** … … 82 82 * @since 1.0.0 83 83 */ 84 public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1. 8' ); }84 public function __clone() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1.9' ); } 85 85 86 86 /** … … 89 89 * @since 1.0.0 90 90 */ 91 public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1. 8' ); }91 public function __wakeup() { _doing_it_wrong( __FUNCTION__, esc_attr__( 'Cheatin’ huh?', 'xt-facebook-events' ), '1.1.9' ); } 92 92 93 93 … … 103 103 // Plugin version. 104 104 if( ! defined( 'XTFE_VERSION' ) ){ 105 define( 'XTFE_VERSION', '1.1. 8' );105 define( 'XTFE_VERSION', '1.1.9' ); 106 106 } 107 107
Note: See TracChangeset
for help on using the changeset viewer.