Changeset 3401002
- Timestamp:
- 11/22/2025 03:29:21 PM (4 months ago)
- Location:
- easy-replace-image
- Files:
-
- 5 edited
-
assets/blueprint.json (modified) (2 diffs)
-
assets/blueprints/blueprint.json (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/easy-replace-image.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-replace-image/assets/blueprint.json
r3286333 r3401002 2 2 "landingPage": "\/wp-admin\/plugins.php", 3 3 "preferredVersions": { 4 "php": "8. 0",4 "php": "8.4", 5 5 "wp": "latest" 6 6 }, … … 16 16 "pluginZipFile": { 17 17 "resource": "url", 18 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5. 1.zip"18 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.2.zip" 19 19 }, 20 20 "options": { -
easy-replace-image/assets/blueprints/blueprint.json
r3286333 r3401002 2 2 "landingPage": "\/wp-admin\/plugins.php", 3 3 "preferredVersions": { 4 "php": "8. 0",4 "php": "8.4", 5 5 "wp": "latest" 6 6 }, … … 16 16 "pluginZipFile": { 17 17 "resource": "url", 18 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5. 1.zip"18 "url": "https:\/\/downloads.wordpress.org\/plugin\/easy-replace-image.3.5.2.zip" 19 19 }, 20 20 "options": { -
easy-replace-image/trunk/changelog.txt
r3286333 r3401002 1 1 == Changelog == 2 3 = 3.5.1 = 4 * Tested up to 6.8.1 5 * Fixed a SSRF vulnerability for the fetch from URL feature 6 * Styles updates 2 7 3 8 = 3.5.0 = -
easy-replace-image/trunk/easy-replace-image.php
r3286333 r3401002 6 6 * Text Domain: eri 7 7 * Domain Path: /langs 8 * Version: 3.5. 18 * Version: 3.5.2 9 9 * Author: Iulia Cazan 10 10 * Author URI: https://profiles.wordpress.org/iulia-cazan … … 30 30 */ 31 31 32 define( 'ERI_PLUGIN_VERSION', 3.5 1);32 define( 'ERI_PLUGIN_VERSION', 3.52 ); 33 33 define( 'ERI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 34 34 define( 'ERI_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 134 134 * Add the custom replace link to the media item. 135 135 * 136 * @param array $actions Actions.137 * @param \WP_Post $post Current object.136 * @param array $actions Actions. 137 * @param \WP_Post|null $post Current object. 138 138 * @return array 139 139 */ 140 public static function media_actions( array $actions = [], \WP_Post $post = null ): array {140 public static function media_actions( array $actions = [], \WP_Post|null $post = null ): array { 141 141 if ( empty( $post->post_type ) ) { 142 142 // Fail-fast, not a post. -
easy-replace-image/trunk/readme.txt
r3286333 r3401002 3 3 Tags: change attachment file, download image, image refresh, replace image, repair broken image 4 4 Requires at least: 5.2 5 Tested up to: 6. 8.16 Stable tag: 3.5. 15 Tested up to: 6.9 6 Stable tag: 3.5.2 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 29 29 == Changelog == 30 30 31 = 3.5.1 = 32 * Tested up to 6.8.1 33 * Fixed a SSRF vulnerability for the fetch from URL feature 34 * Styles updates 31 = 3.5.2 = 32 * Tested up to 6.8.3 33 * PHP 8.4 compatibility 35 34 36 35 See the [changelog](https://plugins.svn.wordpress.org/easy-replace-image/trunk/changelog.txt) for detailed information on changes made in the earlier versions.
Note: See TracChangeset
for help on using the changeset viewer.