Plugin Directory

Changeset 3223809


Ignore:
Timestamp:
01/16/2025 07:21:47 PM (15 months ago)
Author:
skyword
Message:

Authors: Fix i18n warnings from plugin checker

Location:
skyword-publishing-api/tags/1.1.4
Files:
1 edited
5 copied

Legend:

Unmodified
Added
Removed
  • skyword-publishing-api/tags/1.1.4/php/routes/class-skyword-authors.php

    r3097544 r3223809  
    189189                    $upload = wp_upload_bits($fields['fileName']['value'], null, base64_decode($fields['imageData']['value']));
    190190                    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' ));
    192192                        return new WP_REST_Response($errorString, 500);
    193193                    }
  • skyword-publishing-api/tags/1.1.4/php/routes/class-skyword-posts.php

    r3127599 r3223809  
    438438        }
    439439
    440         wp_set_post_tags( $postId, $tags );
     440        wp_set_post_tags( $postId, $this->convertTags($tags) );
    441441
    442442        $imageFields = array_filter($fields, array($this, 'filterImages'));
  • skyword-publishing-api/tags/1.1.4/readme.txt

    r3127599 r3223809  
    33Tags: skyword, api
    44Requires at least: 3.3
    5 Tested up to: 6.5.2
    6 Stable tag: 1.1.3
     5Tested up to: 6.7.1
     6Stable tag: 1.1.4
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2121
    2222== 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
    2328
    2429= 1.1.3 =
  • skyword-publishing-api/tags/1.1.4/skyword.php

    r3127599 r3223809  
    33Plugin Name: Skyword Publishing API
    44Description: Integration with the Skyword360 content publication platform.
    5 Version: 1.1.3
     5Version: 1.1.4
    66Author: Skyword, Inc.
    77Author URI: http://www.skyword.com
     
    1717define( 'SKYWORD_REST_API_VERSION', "Skyword REST API plugin " . $plugin_version );
    1818if ( !defined('SKYWORD_VN') )
    19     define( 'SKYWORD_VN', "1.13" ); //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.
    2121
    2222register_activation_hook(__FILE__, 'get_skyword_api_defaults');
Note: See TracChangeset for help on using the changeset viewer.