Plugin Directory

Changeset 517808


Ignore:
Timestamp:
03/12/2012 08:15:48 AM (14 years ago)
Author:
Denis Buka
Message:
 
Location:
drop-in-dropbox
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • drop-in-dropbox/tags/0.2.6/DropboxUploader.php

    r517804 r517808  
    8484    protected function login() {
    8585        $data = $this->request('https://www.dropbox.com/login');
    86         $token = $this->extractToken($data, '/login');
    8786       
    88         $data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password, 't'=>$token));
     87        $data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password));
    8988       
    9089        if (stripos($data, 'location: /home') === false)
  • drop-in-dropbox/tags/0.2.6/drop-in-dropbox.php

    r517804 r517808  
    44Plugin URI: http://steamingkettle.net/web-design/wordpress-plugins/
    55Description: Upload single files or entire directories with subdirectories to your Dropbox account.
    6 Version: 0.2.5
     6Version: 0.2.6
    77Author: Denis Buka
    88Author URI: http://steamingkettle.net
    99
    10 Copyright (C) 2011 www.denisbuka.ru
     10Copyright (C) 2011 steamingkettle.net
    1111
    1212This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
  • drop-in-dropbox/tags/0.2.6/readme.txt

    r517804 r517808  
    55Requires at least: 3.2
    66Tested up to: 3.2
    7 Stable tag: 0.2.5
     7Stable tag: 0.2.6
    88
    99Upload single files or entire directories with subdirectories to your Dropbox account.   
     
    4848== Changelog ==
    4949
     50= 0.2.6 =
     51* Fixed Error   
     52
    5053= 0.2.5 =
    5154* Error handling   
  • drop-in-dropbox/trunk/DropboxUploader.php

    r427066 r517808  
    8484    protected function login() {
    8585        $data = $this->request('https://www.dropbox.com/login');
    86         $token = $this->extractToken($data, '/login');
    8786       
    88         $data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password, 't'=>$token));
     87        $data = $this->request('https://www.dropbox.com/login', true, array('login_email'=>$this->email, 'login_password'=>$this->password));
    8988       
    9089        if (stripos($data, 'location: /home') === false)
  • drop-in-dropbox/trunk/drop-in-dropbox.php

    r505210 r517808  
    44Plugin URI: http://steamingkettle.net/web-design/wordpress-plugins/
    55Description: Upload single files or entire directories with subdirectories to your Dropbox account.
    6 Version: 0.2.5
     6Version: 0.2.6
    77Author: Denis Buka
    88Author URI: http://steamingkettle.net
    99
    10 Copyright (C) 2011 www.denisbuka.ru
     10Copyright (C) 2011 steamingkettle.net
    1111
    1212This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
  • drop-in-dropbox/trunk/readme.txt

    r505213 r517808  
    55Requires at least: 3.2
    66Tested up to: 3.2
    7 Stable tag: 0.2.5
     7Stable tag: 0.2.6
    88
    99Upload single files or entire directories with subdirectories to your Dropbox account.   
     
    4848== Changelog ==
    4949
     50= 0.2.6 =
     51* Fixed Error   
     52
    5053= 0.2.5 =
    5154* Error handling   
Note: See TracChangeset for help on using the changeset viewer.