Plugin Directory

Changeset 2308022


Ignore:
Timestamp:
05/19/2020 01:43:02 PM (6 years ago)
Author:
libsyn
Message:

changes for version 1.2.2.8

Location:
libsyn-podcasting/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libsyn-podcasting/trunk/admin/lib/Libsyn.php

    r2302786 r2308022  
    44    protected $text_dom = LIBSYN_TEXT_DOMAIN;
    55    protected $plugin_name = "Libsyn/Wordpress";
    6     protected $plugin_version = "1.2.2.7";
     6    protected $plugin_version = "1.2.2.8";
    77    protected $api_table_name = "libsyn_podcast_plugin";
    88    protected $api_base_uri = "https://api.libsyn.com";
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Importer.php

    r2302786 r2308022  
    220220            $importer = new \Libsyn\Service\Importer();
    221221            if ( isset($_POST['data']) ) {
    222                 $metaData = $sanitize->array($_POST['data']);
     222                $metaData = $sanitize->arrays($_POST['data']);
    223223                $createPost = $importer->createPost( (object) $metaData );
    224224            } else {
     
    254254            if ( isset($_POST['id']) && isset($_POST['data']) ) {
    255255                $post_id = $sanitize->numeric($_POST['id']);
    256                 $metaData = $sanitize->array($_POST['data']);
     256                $metaData = $sanitize->arrays($_POST['data']);
    257257                if ( isset($_POST['show']) ) {
    258                     $apiShow = $sanitize->array($_POST['show']);
     258                    $apiShow = $sanitize->arrays($_POST['show']);
    259259                } else {
    260260                    $apiShow = false;
  • libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Sanitize.php

    r2303479 r2308022  
    279279
    280280    /**
    281      * array
     281     * arrays
    282282     * Sanitize text field or array of text fields
    283283     *
     
    287287     * @return mixed
    288288     */
    289     public function array( $array ) {
     289    public function arrays( $array ) {
    290290        if ( is_array($array) ) {
    291291            foreach ( $array as $key => &$value ) {
    292292                if ( is_array( $value ) ) {
    293                     $value = $this->array($value);
     293                    $value = $this->arrays($value);
    294294                }
    295295                else {
  • libsyn-podcasting/trunk/libsyn-podcasting.php

    r2302786 r2308022  
    44Plugin URI: https://wordpress.org/plugins/libsyn-podcasting/
    55Description: Post or edit Libsyn Podcast episodes directly through Wordpress.
    6 Version: 1.2.2.7
     6Version: 1.2.2.8
    77Author: Libsyn
    88Author URI: https://support.libsyn.com/kb/libsyn-publisher-hub/
  • libsyn-podcasting/trunk/readme.txt

    r2302786 r2308022  
    55Requires PHP: 5.4
    66Tested up to: 5.4.1
    7 Stable tag: 1.2.2.7
     7Stable tag: 1.2.2.8
    88License: GPLv3 or later
    99Author URI: https://support.libsyn.com/kb/libsyn-publisher-hub/
     
    4646== Changelog ==
    4747= 1.2.2.7 =
     48* Small bug fix for php > 5.6 compatibility.
     49
     50= 1.2.2.7 =
    4851* Some style sheet changes.
    4952* Feed importer process changes.
Note: See TracChangeset for help on using the changeset viewer.