Changeset 2064703
- Timestamp:
- 04/07/2019 07:06:57 PM (7 years ago)
- Location:
- blighty-explorer/trunk
- Files:
-
- 3 edited
-
blighty-explorer.php (modified) (2 diffs)
-
includes/DropboxClient2.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blighty-explorer/trunk/blighty-explorer.php
r2035538 r2064703 3 3 * Plugin Name: Blighty Explorer 4 4 * 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. 8 9 * (C) 2015-2018 Chris Murfin (Blighty) 9 * Version: 2.2. 210 * Version: 2.2.3 10 11 * Author: Blighty 11 12 * Text Domain: blighty-explorer … … 36 37 37 38 define('BEX_PLUGIN_NAME', 'Blighty Explorer'); 38 define('BEX_PLUGIN_VERSION', '2.2. 2');39 define('BEX_PLUGIN_VERSION', '2.2.3'); 39 40 40 41 define('BEX_UPLOADS_FOLDER', '_bex_uploads'); -
blighty-explorer/trunk/includes/DropboxClient2.php
r1880525 r2064703 195 195 196 196 $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, ""); 198 198 199 199 unset($content); … … 221 221 if (!is_null($qs)) $serviceURL .= "?" .$qs; 222 222 $ch = curl_init($serviceURL); 223 223 224 224 $postFields = json_encode($params); 225 225 -
blighty-explorer/trunk/readme.txt
r2035538 r2064703 5 5 Requires at least: 4.1.1 6 6 Tested up to: 5.0.3 7 Stable tag: 2.2. 27 Stable tag: 2.2.3 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 57 57 58 58 == Changelog == 59 = Version 2.2.3 - Apr 7th, 2019 = 60 * Bug fix to resolve uploads duplicating contents. 61 59 62 = Version 2.2.2 - Feb 20th, 2019 = 60 63 * Bug fix to resolve problem with apostrophes in path name. … … 295 298 296 299 == 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.