Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
class.remote_fsAccessDriver.php: Fix some option loading error while …
Browse files Browse the repository at this point in the history
…using the function Ajxp_PLUGIN::init(repository, options)

manifest.xml: Disabling the remote_fs driver by default
class.JumploaderProcessor.php:
      - Cross session resume implementation (doesn't work with smb)
      - partitioning now works with FTP
      - upload validation process now working for FTP and FS
  • Loading branch information
thomasCresson committed Jul 23, 2013
1 parent d17f84d commit 69597c9
Show file tree
Hide file tree
Showing 4 changed files with 230 additions and 97 deletions.
Expand Up @@ -29,7 +29,7 @@ class remote_fsAccessDriver extends AbstractAccessDriver
{
private $plugCapabilities = array();

function init($repository, $options = null){
function init($repository, $options = array()){
$repoCapabilities = $repository->getOption("API_CAPABILITIES");
if($repoCapabilities != ""){
$this->plugCapabilities = explode(",", $repoCapabilities);
Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/access.remote_fs/manifest.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<ajxpdriver name="remote_fs" label="CONF_MESSAGE[Remote Server (via API)]" description="CONF_MESSAGE[Access a remote server implementing the AjaXplorer API (most commonly a remote server with another AjaXplorer installed)]" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:../core.ajaxplorer/ajxp_registry.xsd">
<ajxpdriver name="remote_fs" enabled="false" label="CONF_MESSAGE[Remote Server (via API)]" description="CONF_MESSAGE[Access a remote server implementing the AjaXplorer API (most commonly a remote server with another AjaXplorer installed)]" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:../core.ajaxplorer/ajxp_registry.xsd">
<client_settings icon="plugins/access.remote_fs/remote_fs_icon.png">
<resources>
<i18n namespace="remote_fs_access" path="plugins/access.remote_fs/i18n"/>
Expand Down

0 comments on commit 69597c9

Please sign in to comment.