Plugin Directory

Changeset 2225820


Ignore:
Timestamp:
01/11/2020 10:07:01 AM (6 years ago)
Author:
socialrocket
Message:

Version 1.2.7 update

Location:
social-rocket/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • social-rocket/trunk/includes/class-social-rocket-compatibility.php

    r2224460 r2225820  
    4040       
    4141        if ( class_exists( 'Tasty_Recipes' ) && function_exists( 'debug_backtrace' ) ) {
     42            $data['doing_excerpt'] = false;
    4243            $backtrace = debug_backtrace( DEBUG_BACKTRACE_IGNORE_ARGS );
    4344            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                ) {
    4549                    $data['doing_excerpt'] = true;
    4650                    break;
  • social-rocket/trunk/includes/social-rocket-update.php

    r2224460 r2225820  
    1414    }
    1515    if( $result ) {
    16         $this_plugin = plugin_basename( __FILE__ );
     16        $this_plugin = plugin_basename( SOCIAL_ROCKET_FILE );
    1717        if (
    1818            // one click update && bulk update from plugins.php
  • social-rocket/trunk/readme.txt

    r2225310 r2225820  
    66Tested up to: 5.3
    77Requires PHP: 5.5
    8 Stable tag: 1.2.6
     8Stable tag: 1.2.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== Changelog ==
     85= 1.2.7 =
     86* FIX: compatibility issue with Tasty Recipes plugin.
     87* FIX: invalid path in automatic settings backup.
     88
    8589= 1.2.6 =
    8690* 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  
    33 * Plugin Name: Social Rocket
    44 * Description: Social Sharing... to the Moon!
    5  * Version: 1.2.6
     5 * Version: 1.2.7
    66 * Author: Social Rocket
    77 * Author URI: http://wpsocialrocket.com/
     
    1717}
    1818
    19 define( 'SOCIAL_ROCKET_VERSION', '1.2.6' );
     19define( 'SOCIAL_ROCKET_VERSION', '1.2.7' );
    2020define( 'SOCIAL_ROCKET_DBVERSION', '4' );
    2121define( 'SOCIAL_ROCKET_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.