Changeset 3223809
- Timestamp:
- 01/16/2025 07:21:47 PM (15 months ago)
- Location:
- skyword-publishing-api/tags/1.1.4
- Files:
-
- 1 edited
- 5 copied
-
. (copied) (copied from skyword-publishing-api/trunk)
-
php/options.php (copied) (copied from skyword-publishing-api/trunk/php/options.php)
-
php/routes/class-skyword-authors.php (modified) (1 diff)
-
php/routes/class-skyword-posts.php (copied) (copied from skyword-publishing-api/trunk/php/routes/class-skyword-posts.php) (1 diff)
-
readme.txt (copied) (copied from skyword-publishing-api/trunk/readme.txt) (2 diffs)
-
skyword.php (copied) (copied from skyword-publishing-api/trunk/skyword.php) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
skyword-publishing-api/tags/1.1.4/php/routes/class-skyword-authors.php
r3097544 r3223809 189 189 $upload = wp_upload_bits($fields['fileName']['value'], null, base64_decode($fields['imageData']['value'])); 190 190 if ( ! empty( $upload['error'] ) ) { 191 $errorString = sprintf( __( 'Could not write file %1$s (%2$s)' ), 'author-'.$userId, $upload['error']);191 $errorString = sprintf( __( 'Could not write file ' . 'author-'.$userId . '(' . $upload['error'] . ')', 'skyword-publishing-api' )); 192 192 return new WP_REST_Response($errorString, 500); 193 193 } -
skyword-publishing-api/tags/1.1.4/php/routes/class-skyword-posts.php
r3127599 r3223809 438 438 } 439 439 440 wp_set_post_tags( $postId, $t ags);440 wp_set_post_tags( $postId, $this->convertTags($tags) ); 441 441 442 442 $imageFields = array_filter($fields, array($this, 'filterImages')); -
skyword-publishing-api/tags/1.1.4/readme.txt
r3127599 r3223809 3 3 Tags: skyword, api 4 4 Requires at least: 3.3 5 Tested up to: 6. 5.26 Stable tag: 1.1. 35 Tested up to: 6.7.1 6 Stable tag: 1.1.4 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 21 21 22 22 == Changelog == 23 24 = 1.1.4 = 25 * Convert tags to array before setting post tags 26 * Adjustments to sitemaps 27 * Respond to plugin checker reports 23 28 24 29 = 1.1.3 = -
skyword-publishing-api/tags/1.1.4/skyword.php
r3127599 r3223809 3 3 Plugin Name: Skyword Publishing API 4 4 Description: Integration with the Skyword360 content publication platform. 5 Version: 1.1. 35 Version: 1.1.4 6 6 Author: Skyword, Inc. 7 7 Author URI: http://www.skyword.com … … 17 17 define( 'SKYWORD_REST_API_VERSION', "Skyword REST API plugin " . $plugin_version ); 18 18 if ( !defined('SKYWORD_VN') ) 19 define( 'SKYWORD_VN', "1.1 3" ); //This CANNOT have two decimal places.20 // .1.4 is NOT valid.19 define( 'SKYWORD_VN', "1.14" ); //This CANNOT have two decimal points. 20 //1.1.4 is NOT valid. 21 21 22 22 register_activation_hook(__FILE__, 'get_skyword_api_defaults');
Note: See TracChangeset
for help on using the changeset viewer.