Changeset 3107459
- Timestamp:
- 06/25/2024 11:52:17 AM (20 months ago)
- Location:
- instagrate-to-wordpress
- Files:
-
- 4 deleted
- 7 edited
- 15 copied
-
tags/1.3.9 (copied) (copied from instagrate-to-wordpress/trunk)
-
tags/1.3.9/assets (copied) (copied from instagrate-to-wordpress/trunk/assets)
-
tags/1.3.9/css (deleted)
-
tags/1.3.9/images (deleted)
-
tags/1.3.9/includes (copied) (copied from instagrate-to-wordpress/trunk/includes)
-
tags/1.3.9/includes/instagram.php (copied) (copied from instagrate-to-wordpress/trunk/includes/instagram.php) (2 diffs)
-
tags/1.3.9/index.php (copied) (copied from instagrate-to-wordpress/trunk/index.php)
-
tags/1.3.9/instagrate-to-wordpress.php (copied) (copied from instagrate-to-wordpress/trunk/instagrate-to-wordpress.php) (2 diffs)
-
tags/1.3.9/lib (deleted)
-
tags/1.3.9/php (deleted)
-
tags/1.3.9/readme.txt (copied) (copied from instagrate-to-wordpress/trunk/readme.txt) (2 diffs)
-
tags/1.3.9/templates/images.php (copied) (copied from instagrate-to-wordpress/trunk/templates/images.php)
-
tags/1.3.9/templates/index.php (copied) (copied from instagrate-to-wordpress/trunk/templates/index.php)
-
tags/1.3.9/templates/settings.php (copied) (copied from instagrate-to-wordpress/trunk/templates/settings.php)
-
tags/1.3.9/vendor (copied) (copied from instagrate-to-wordpress/trunk/vendor)
-
tags/1.3.9/vendor/autoload.php (copied) (copied from instagrate-to-wordpress/trunk/vendor/autoload.php) (1 diff)
-
tags/1.3.9/vendor/composer/autoload_real.php (copied) (copied from instagrate-to-wordpress/trunk/vendor/composer/autoload_real.php) (2 diffs)
-
tags/1.3.9/vendor/composer/autoload_static.php (copied) (copied from instagrate-to-wordpress/trunk/vendor/composer/autoload_static.php) (2 diffs)
-
tags/1.3.9/vendor/composer/installed.php (copied) (copied from instagrate-to-wordpress/trunk/vendor/composer/installed.php) (2 diffs)
-
trunk/includes/instagram.php (modified) (2 diffs)
-
trunk/instagrate-to-wordpress.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (2 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
instagrate-to-wordpress/tags/1.3.9/includes/instagram.php
r3008794 r3107459 79 79 */ 80 80 public function get_user( $access, $user_id ) { 81 $url = $user_id . '/';81 $url = 'me/'; 82 82 $data = $this->http()->do_http_request( $access, $url, array('fields'=> 'id,username') ); 83 83 if ( ! $data ) { … … 97 97 */ 98 98 public function get_user_media( $access, $user_id ) { 99 $url = $user_id . '/media';99 $url = 'me/media'; 100 100 $data = $this->http()->do_http_request( $access, $url, array('fields'=> 'id,media_type,media_url,thumbnail_url,timestamp,username,children,caption,permalink' ) ); 101 101 if ( ! $data ) { -
instagrate-to-wordpress/tags/1.3.9/instagrate-to-wordpress.php
r3053265 r3107459 5 5 Description: Plugin for automatic posting of Instagram images into a WordPress blog. 6 6 Author: polevaultweb 7 Version: 1.3. 87 Version: 1.3.9 8 8 Author URI: https://polevaultweb.com/ 9 9 … … 26 26 27 27 //plugin version 28 define( 'ITW_PLUGIN_VERSION', '1.3. 8' );28 define( 'ITW_PLUGIN_VERSION', '1.3.9' ); 29 29 define( 'ITW_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 30 30 define( 'ITW_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
instagrate-to-wordpress/tags/1.3.9/readme.txt
r3066581 r3107459 7 7 Tested up to: 6.5 8 8 Requires PHP: 5.5 9 Stable Tag: 1.3. 89 Stable Tag: 1.3.9 10 10 11 11 Automatically post your Instagram images to your WordPress site. Create new WordPress posts from your Instagram images, save the Instagram image to the media library. … … 118 118 == Changelog == 119 119 120 = 1.3.9 = 121 Release Date: June 25th, 2024 122 123 * Fix: Fatal error after Instagram login 124 120 125 = 1.3.8 = 121 126 Release Date: Mar 18th, 2024 -
instagrate-to-wordpress/tags/1.3.9/vendor/autoload.php
r3053265 r3107459 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03::getLoader();25 return ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e::getLoader(); -
instagrate-to-wordpress/tags/1.3.9/vendor/composer/autoload_real.php
r3053265 r3107459 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb035 class ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitcb56b687e19d142267f8184c5f30943e::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
instagrate-to-wordpress/tags/1.3.9/vendor/composer/autoload_static.php
r3053265 r3107459 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb037 class ComposerStaticInitcb56b687e19d142267f8184c5f30943e 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 28 28 { 29 29 return \Closure::bind(function () use ($loader) { 30 $loader->prefixLengthsPsr4 = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$prefixLengthsPsr4;31 $loader->prefixDirsPsr4 = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$prefixDirsPsr4;32 $loader->classMap = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$classMap;30 $loader->prefixLengthsPsr4 = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$prefixLengthsPsr4; 31 $loader->prefixDirsPsr4 = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$prefixDirsPsr4; 32 $loader->classMap = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$classMap; 33 33 34 34 }, null, ClassLoader::class); -
instagrate-to-wordpress/tags/1.3.9/vendor/composer/installed.php
r3053265 r3107459 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' dd58a95b13beac9fd5a969f75489d6463a293040',6 'reference' => '0ed564ea5efa22aa6b4219781c5bd1fe31b7a8ad', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' dd58a95b13beac9fd5a969f75489d6463a293040',16 'reference' => '0ed564ea5efa22aa6b4219781c5bd1fe31b7a8ad', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
instagrate-to-wordpress/trunk/includes/instagram.php
r3008794 r3107459 79 79 */ 80 80 public function get_user( $access, $user_id ) { 81 $url = $user_id . '/';81 $url = 'me/'; 82 82 $data = $this->http()->do_http_request( $access, $url, array('fields'=> 'id,username') ); 83 83 if ( ! $data ) { … … 97 97 */ 98 98 public function get_user_media( $access, $user_id ) { 99 $url = $user_id . '/media';99 $url = 'me/media'; 100 100 $data = $this->http()->do_http_request( $access, $url, array('fields'=> 'id,media_type,media_url,thumbnail_url,timestamp,username,children,caption,permalink' ) ); 101 101 if ( ! $data ) { -
instagrate-to-wordpress/trunk/instagrate-to-wordpress.php
r3053265 r3107459 5 5 Description: Plugin for automatic posting of Instagram images into a WordPress blog. 6 6 Author: polevaultweb 7 Version: 1.3. 87 Version: 1.3.9 8 8 Author URI: https://polevaultweb.com/ 9 9 … … 26 26 27 27 //plugin version 28 define( 'ITW_PLUGIN_VERSION', '1.3. 8' );28 define( 'ITW_PLUGIN_VERSION', '1.3.9' ); 29 29 define( 'ITW_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); 30 30 define( 'ITW_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
instagrate-to-wordpress/trunk/readme.txt
r3066581 r3107459 7 7 Tested up to: 6.5 8 8 Requires PHP: 5.5 9 Stable Tag: 1.3. 89 Stable Tag: 1.3.9 10 10 11 11 Automatically post your Instagram images to your WordPress site. Create new WordPress posts from your Instagram images, save the Instagram image to the media library. … … 118 118 == Changelog == 119 119 120 = 1.3.9 = 121 Release Date: June 25th, 2024 122 123 * Fix: Fatal error after Instagram login 124 120 125 = 1.3.8 = 121 126 Release Date: Mar 18th, 2024 -
instagrate-to-wordpress/trunk/vendor/autoload.php
r3053265 r3107459 23 23 require_once __DIR__ . '/composer/autoload_real.php'; 24 24 25 return ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03::getLoader();25 return ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e::getLoader(); -
instagrate-to-wordpress/trunk/vendor/composer/autoload_real.php
r3053265 r3107459 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb035 class ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); 27 spl_autoload_unregister(array('ComposerAutoloaderInit 013cf17504e6e695a3c97dcfbf23eb03', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInitcb56b687e19d142267f8184c5f30943e', 'loadClassLoader')); 28 28 29 29 require __DIR__ . '/autoload_static.php'; 30 call_user_func(\Composer\Autoload\ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitcb56b687e19d142267f8184c5f30943e::getInitializer($loader)); 31 31 32 32 $loader->register(true); -
instagrate-to-wordpress/trunk/vendor/composer/autoload_static.php
r3053265 r3107459 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb037 class ComposerStaticInitcb56b687e19d142267f8184c5f30943e 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 28 28 { 29 29 return \Closure::bind(function () use ($loader) { 30 $loader->prefixLengthsPsr4 = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$prefixLengthsPsr4;31 $loader->prefixDirsPsr4 = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$prefixDirsPsr4;32 $loader->classMap = ComposerStaticInit 013cf17504e6e695a3c97dcfbf23eb03::$classMap;30 $loader->prefixLengthsPsr4 = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$prefixLengthsPsr4; 31 $loader->prefixDirsPsr4 = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$prefixDirsPsr4; 32 $loader->classMap = ComposerStaticInitcb56b687e19d142267f8184c5f30943e::$classMap; 33 33 34 34 }, null, ClassLoader::class); -
instagrate-to-wordpress/trunk/vendor/composer/installed.php
r3053265 r3107459 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' dd58a95b13beac9fd5a969f75489d6463a293040',6 'reference' => '0ed564ea5efa22aa6b4219781c5bd1fe31b7a8ad', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' dd58a95b13beac9fd5a969f75489d6463a293040',16 'reference' => '0ed564ea5efa22aa6b4219781c5bd1fe31b7a8ad', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.