Plugin Directory

Changeset 2064703


Ignore:
Timestamp:
04/07/2019 07:06:57 PM (7 years ago)
Author:
Blighty
Message:

2.2.3

Location:
blighty-explorer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • blighty-explorer/trunk/blighty-explorer.php

    r2035538 r2064703  
    33 * Plugin Name: Blighty Explorer
    44 * Plugin URI: http://blighty.net/wordpress-blighty-explorer-plugin/
    5  * Description: Provides an easy integrateable layer between a folder hierarchy on Dropbox and the website.
    6  * The folder tree can be navigated and files downloaded. Changes to the original Dropbox folder are reflected through
    7  * to the website. It is also provides functionality to allow for uploads to a Dropbox folder.
     5 * Description: Provides an easy integrateable layer between a folder hierarchy
     6 * on Dropbox and the website. The folder tree can be navigated and files downloaded.
     7 * Changes to the original Dropbox folder are reflected through to the website. It also
     8 * provides functionality to allow for uploads to a Dropbox folder.
    89 * (C) 2015-2018 Chris Murfin (Blighty)
    9  * Version: 2.2.2
     10 * Version: 2.2.3
    1011 * Author: Blighty
    1112 * Text Domain: blighty-explorer
     
    3637
    3738define('BEX_PLUGIN_NAME', 'Blighty Explorer');
    38 define('BEX_PLUGIN_VERSION', '2.2.2');
     39define('BEX_PLUGIN_VERSION', '2.2.3');
    3940
    4041define('BEX_UPLOADS_FOLDER', '_bex_uploads');
  • blighty-explorer/trunk/includes/DropboxClient2.php

    r1880525 r2064703  
    195195
    196196        $params = array('cursor' => array('session_id' => $uploadID, 'offset' => $offset), 'commit' => array('path' => $dropbox_path, 'mode' => 'add'));
    197         $response = $this->CallAPI(self::API_VER .'files/upload_session/finish', null, $params, true, $content);
     197        $response = $this->CallAPI(self::API_VER .'files/upload_session/finish', null, $params, true, "");
    198198
    199199        unset($content);
     
    221221        if (!is_null($qs)) $serviceURL .= "?" .$qs;
    222222        $ch = curl_init($serviceURL);
    223 
     223       
    224224        $postFields = json_encode($params);   
    225225           
  • blighty-explorer/trunk/readme.txt

    r2035538 r2064703  
    55Requires at least: 4.1.1
    66Tested up to: 5.0.3
    7 Stable tag: 2.2.2
     7Stable tag: 2.2.3
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5757
    5858== Changelog ==
     59= Version 2.2.3 - Apr 7th, 2019 =
     60* Bug fix to resolve uploads duplicating contents.
     61
    5962= Version 2.2.2 - Feb 20th, 2019 =
    6063* Bug fix to resolve problem with apostrophes in path name.
     
    295298
    296299== Upgrade Notice ==
    297 * 2.2.12 - Bug fix to resolve problem with apostrophes in path name.
     300* 2.2.3 - Bug fix to resolve uploads duplicating contents.
Note: See TracChangeset for help on using the changeset viewer.