Revive Old Posts – Auto Post to Social Media - Version 8.1.6

Version Description

  • 2018-12-13
Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Revive Old Posts – Auto Post to Social Media
Version 8.1.6
Comparing to
See all releases

Code changes from version 8.1.5 to 8.1.6

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v8.1.5 - 2018-12-13
3
  **Changes:**
4
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
1
 
2
+ ### v8.1.6 - 2018-12-13
3
+ **Changes:**
4
+ * Fixed undefined variable error
5
+
6
  ### v8.1.5 - 2018-12-13
7
  **Changes:**
8
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
includes/admin/class-rop-admin.php CHANGED
@@ -98,6 +98,8 @@ class Rop_Admin {
98
  $model = new Rop_Post_Format_Model;
99
  $post_format = $model->get_post_format();
100
 
 
 
101
  foreach ( $post_format as $account_id => $option ) {
102
  $shorteners[] = $option['short_url_service'];
103
  }
98
  $model = new Rop_Post_Format_Model;
99
  $post_format = $model->get_post_format();
100
 
101
+ $shorteners = array();
102
+
103
  foreach ( $post_format as $account_id => $option ) {
104
  $shorteners[] = $option['short_url_service'];
105
  }
includes/class-rop.php CHANGED
@@ -68,7 +68,7 @@ class Rop {
68
  public function __construct() {
69
 
70
  $this->plugin_name = 'rop';
71
- $this->version = '8.1.5';
72
 
73
  $this->load_dependencies();
74
  $this->set_locale();
68
  public function __construct() {
69
 
70
  $this->plugin_name = 'rop';
71
+ $this->version = '8.1.6';
72
 
73
  $this->load_dependencies();
74
  $this->set_locale();
readme.md CHANGED
@@ -133,6 +133,11 @@ http://revive.social/plugins/revive-old-post
133
 
134
 
135
  ## Changelog ##
 
 
 
 
 
136
  ### 8.1.5 - 2018-12-13 ###
137
 
138
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
133
 
134
 
135
  ## Changelog ##
136
+ ### 8.1.6 - 2018-12-13 ###
137
+
138
+ * Fixed undefined variable error
139
+
140
+
141
  ### 8.1.5 - 2018-12-13 ###
142
 
143
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
readme.txt CHANGED
@@ -133,6 +133,11 @@ http://revive.social/plugins/revive-old-post
133
 
134
 
135
  == Changelog ==
 
 
 
 
 
136
  = 8.1.5 - 2018-12-13 =
137
 
138
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
133
 
134
 
135
  == Changelog ==
136
+ = 8.1.6 - 2018-12-13 =
137
+
138
+ * Fixed undefined variable error
139
+
140
+
141
  = 8.1.5 - 2018-12-13 =
142
 
143
  * New: Made post share content filterable, you can now use post excerpt field (see docs)
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"6de7bc1979de72bd3d3ff4ec00373632","uninstall.php":"88c3ec2a2919988f1ed38891cb37b6f1"}
1
+ {"class-rop-autoloader.php":"7bfbb1554230d0ace777adb2e42bebeb","index.php":"39ab8276fb0e4bd3fcab3270822c5977","tweet-old-post.php":"5383b2eed3d04ca84a2d15de377da728","uninstall.php":"88c3ec2a2919988f1ed38891cb37b6f1"}
tweet-old-post.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: Revive Old Posts
17
  * Plugin URI: https://revive.social/
18
  * Description: WordPress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, <a href="http://revive.social/support/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
19
- * Version: 8.1.5
20
  * Author: revive.social
21
  * Author URI: https://revive.social/
22
  * Requires at least: 3.5
@@ -98,7 +98,7 @@ function run_rop() {
98
  }
99
 
100
  define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' );
101
- define( 'ROP_LITE_VERSION', '8.1.5' );
102
  define( 'ROP_LITE_BASE_FILE', __FILE__ );
103
  define( 'ROP_DEBUG', false );
104
  define( 'ROP_LITE_PATH', plugin_dir_path( __FILE__ ) );
16
  * Plugin Name: Revive Old Posts
17
  * Plugin URI: https://revive.social/
18
  * Description: WordPress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, <a href="http://revive.social/support/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
19
+ * Version: 8.1.6
20
  * Author: revive.social
21
  * Author URI: https://revive.social/
22
  * Requires at least: 3.5
98
  }
99
 
100
  define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' );
101
+ define( 'ROP_LITE_VERSION', '8.1.6' );
102
  define( 'ROP_LITE_BASE_FILE', __FILE__ );
103
  define( 'ROP_DEBUG', false );
104
  define( 'ROP_LITE_PATH', plugin_dir_path( __FILE__ ) );
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitce73d3912d55ea99b2d811dd0985c0df::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInita7135bccd420d6a54b36213d67a4b00e
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequirea7135bccd420d6a54b36213d67a4b00e($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequirea7135bccd420d6a54b36213d67a4b00e($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitce73d3912d55ea99b2d811dd0985c0df
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitce73d3912d55ea99b2d811dd0985c0df', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitce73d3912d55ea99b2d811dd0985c0df', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
+ composerRequirece73d3912d55ea99b2d811dd0985c0df($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequirece73d3912d55ea99b2d811dd0985c0df($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;