Changeset 2151129
- Timestamp:
- 09/04/2019 06:43:15 PM (7 years ago)
- Location:
- coschedule-by-todaymade
- Files:
-
- 7 added
- 2 edited
-
tags/3.2.9 (added)
-
tags/3.2.9/_access-denied.php (added)
-
tags/3.2.9/_missing-token.php (added)
-
tags/3.2.9/frame.php (added)
-
tags/3.2.9/plugin_setup.php (added)
-
tags/3.2.9/readme.txt (added)
-
tags/3.2.9/tm-scheduler.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tm-scheduler.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/trunk/readme.txt
r2150288 r2151129 5 5 Requires at least: 3.5 6 6 Tested up to: 5.2.2 7 Stable tag: 3.2. 87 Stable tag: 3.2.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 97 97 98 98 == Changelog == 99 = 3.2.9 = 100 * Removed an unused plugin action link filter 101 99 102 = 3.2.8 = 100 103 * Removed a link to an unused settings page … … 355 358 356 359 == Upgrade Notice == 360 = 3.2.9 = 361 * Removed an unused plugin action link filter 362 357 363 = 3.2.8 = 358 364 * Removed a link to an unused settings page -
coschedule-by-todaymade/trunk/tm-scheduler.php
r2150288 r2151129 3 3 Plugin Name: CoSchedule 4 4 Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution. 5 Version: 3.2. 85 Version: 3.2.9 6 6 Author: CoSchedule 7 7 Author URI: http://coschedule.com/ … … 24 24 private $app = "https://app.coschedule.com"; 25 25 private $assets = "https://assets.coschedule.com"; 26 private $version = "3.2. 8";26 private $version = "3.2.9"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( "8 8" );50 $this->build = intval( "89" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' ); … … 215 215 add_action( 'admin_menu', array( $this, 'admin_submenu_new_window_items' ) ); 216 216 add_action( 'admin_menu', array( $this, 'admin_submenu_new_window_items_jquery' ) ); 217 218 // Add settings link to plugins listing page219 add_filter( 'plugin_action_links', array( $this, 'plugin_settings_link' ), 2, 2 );220 217 221 218 // Add check for activation redirection
Note: See TracChangeset
for help on using the changeset viewer.