Changeset 2708207
- Timestamp:
- 04/11/2022 07:36:09 PM (4 years ago)
- Location:
- rollbar
- Files:
-
- 8 edited
- 1 copied
-
tags/2.6.2 (copied) (copied from rollbar/trunk)
-
tags/2.6.2/readme.txt (modified) (3 diffs)
-
tags/2.6.2/rollbar-php-wordpress.php (modified) (1 diff)
-
tags/2.6.2/src/Plugin.php (modified) (2 diffs)
-
tags/2.6.2/src/Settings.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/rollbar-php-wordpress.php (modified) (1 diff)
-
trunk/src/Plugin.php (modified) (2 diffs)
-
trunk/src/Settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rollbar/tags/2.6.2/readme.txt
r2218842 r2708207 4 4 Requires at least: 3.5.1 5 5 Tested up to: 5.1.1 6 Stable tag: 2.6. 16 Stable tag: 2.6.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 106 106 == Changelog == 107 107 108 = Version 2.6.2 (March 4th 2020) = 109 * don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88) 110 108 111 = Version 2.6.1 (December 27th 2019) = 109 112 * fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84) … … 210 213 == Upgrade Notice == 211 214 215 = Version 2.6.2 (March 4th 2020) = 216 * don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88) 217 212 218 = Version 2.6.1 (December 27th 2019) = 213 219 * fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84) -
rollbar/tags/2.6.2/rollbar-php-wordpress.php
r2218842 r2708207 4 4 * Plugin URI: https://wordpress.org/plugins/rollbar 5 5 * Description: Rollbar full-stack error tracking for WordPress 6 * Version: 2.6. 16 * Version: 2.6.2 7 7 * Author: Rollbar 8 8 * Author URI: https://rollbar.com -
rollbar/tags/2.6.2/src/Plugin.php
r2218842 r2708207 10 10 class Plugin { 11 11 12 const VERSION = "2.6. 1";12 const VERSION = "2.6.2"; 13 13 14 14 private $config; … … 165 165 'methods' => 'POST', 166 166 'callback' => '\Rollbar\Wordpress\Plugin::testPhpLogging', 167 'permission_callback' => '__return_true', 167 168 'args' => array( 168 169 'server_side_access_token' => array( -
rollbar/tags/2.6.2/src/Settings.php
r2035547 r2708207 100 100 public static function registerSession() 101 101 { 102 if( ! session_id() ) {102 if( ! session_id() && ! defined( 'DOING_CRON' ) ) { 103 103 session_start(); 104 104 } -
rollbar/trunk/readme.txt
r2218842 r2708207 4 4 Requires at least: 3.5.1 5 5 Tested up to: 5.1.1 6 Stable tag: 2.6. 16 Stable tag: 2.6.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 106 106 == Changelog == 107 107 108 = Version 2.6.2 (March 4th 2020) = 109 * don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88) 110 108 111 = Version 2.6.1 (December 27th 2019) = 109 112 * fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84) … … 210 213 == Upgrade Notice == 211 214 215 = Version 2.6.2 (March 4th 2020) = 216 * don’t start a session for wp-cron (https://github.com/rollbar/rollbar-php-wordpress/pull/88) 217 212 218 = Version 2.6.1 (December 27th 2019) = 213 219 * fix(initPhpLogging): Moving fetch settings to before settings check. (https://github.com/rollbar/rollbar-php-wordpress/pull/84) -
rollbar/trunk/rollbar-php-wordpress.php
r2218842 r2708207 4 4 * Plugin URI: https://wordpress.org/plugins/rollbar 5 5 * Description: Rollbar full-stack error tracking for WordPress 6 * Version: 2.6. 16 * Version: 2.6.2 7 7 * Author: Rollbar 8 8 * Author URI: https://rollbar.com -
rollbar/trunk/src/Plugin.php
r2218842 r2708207 10 10 class Plugin { 11 11 12 const VERSION = "2.6. 1";12 const VERSION = "2.6.2"; 13 13 14 14 private $config; … … 165 165 'methods' => 'POST', 166 166 'callback' => '\Rollbar\Wordpress\Plugin::testPhpLogging', 167 'permission_callback' => '__return_true', 167 168 'args' => array( 168 169 'server_side_access_token' => array( -
rollbar/trunk/src/Settings.php
r2035547 r2708207 100 100 public static function registerSession() 101 101 { 102 if( ! session_id() ) {102 if( ! session_id() && ! defined( 'DOING_CRON' ) ) { 103 103 session_start(); 104 104 }
Note: See TracChangeset
for help on using the changeset viewer.