Changeset 2225820
- Timestamp:
- 01/11/2020 10:07:01 AM (6 years ago)
- Location:
- social-rocket/trunk
- Files:
-
- 4 edited
-
includes/class-social-rocket-compatibility.php (modified) (1 diff)
-
includes/social-rocket-update.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
social-rocket.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-rocket/trunk/includes/class-social-rocket-compatibility.php
r2224460 r2225820 40 40 41 41 if ( class_exists( 'Tasty_Recipes' ) && function_exists( 'debug_backtrace' ) ) { 42 $data['doing_excerpt'] = false; 42 43 $backtrace = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS ); 43 44 foreach ( $backtrace as $call ) { 44 if ( isset( $call['class'] ) && $call['class'] === 'Tasty_Recipes\Distribution_Metadata' ) { 45 if ( 46 ( isset( $call['class'] ) && $call['class'] === 'Tasty_Recipes\Distribution_Metadata' ) || 47 ( isset( $call['function'] ) && $call['function'] === 'get_the_excerpt' ) 48 ) { 45 49 $data['doing_excerpt'] = true; 46 50 break; -
social-rocket/trunk/includes/social-rocket-update.php
r2224460 r2225820 14 14 } 15 15 if( $result ) { 16 $this_plugin = plugin_basename( __FILE__);16 $this_plugin = plugin_basename( SOCIAL_ROCKET_FILE ); 17 17 if ( 18 18 // one click update && bulk update from plugins.php -
social-rocket/trunk/readme.txt
r2225310 r2225820 6 6 Tested up to: 5.3 7 7 Requires PHP: 5.5 8 Stable tag: 1.2. 68 Stable tag: 1.2.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 84 84 == Changelog == 85 = 1.2.7 = 86 * FIX: compatibility issue with Tasty Recipes plugin. 87 * FIX: invalid path in automatic settings backup. 88 85 89 = 1.2.6 = 86 90 * FIX: add check if function getmypid() exists. (We use the PHP function getmypid as part of checking whether our background process is still running or not. Apparently certain shared hosts disable getmypid, so we can't rely on this function being available to us.) -
social-rocket/trunk/social-rocket.php
r2225310 r2225820 3 3 * Plugin Name: Social Rocket 4 4 * Description: Social Sharing... to the Moon! 5 * Version: 1.2. 65 * Version: 1.2.7 6 6 * Author: Social Rocket 7 7 * Author URI: http://wpsocialrocket.com/ … … 17 17 } 18 18 19 define( 'SOCIAL_ROCKET_VERSION', '1.2. 6' );19 define( 'SOCIAL_ROCKET_VERSION', '1.2.7' ); 20 20 define( 'SOCIAL_ROCKET_DBVERSION', '4' ); 21 21 define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.