Move TwitterOAuth to Composer, part 2 : StatusNet and Tumblr #508

Merged
MrPetovan merged 2 commits from task/4116-move-twitteroauth-to-composer into develop 2018-01-28 22:40:48 +01:00
3 changed files with 1120 additions and 1121 deletions
Showing only changes of commit 715edd98e2 - Show all commits

View file

@ -7,7 +7,7 @@
*/ */
/* Load OAuth lib. You can find it at http://oauth.net */ /* Load OAuth lib. You can find it at http://oauth.net */
//require_once('OAuth.php'); require_once __DIR__ . DIRECTORY_SEPARATOR . 'OAuth1.php';
/** /**
* Tumblr OAuth class * Tumblr OAuth class

View file

@ -7,8 +7,7 @@
* Author: Michael Vogel <https://pirati.ca/profile/heluecht> * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
*/ */
require_once 'library/OAuth1.php'; require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'tumblroauth.php';
require_once 'addon/tumblr/tumblroauth/tumblroauth.php';
use Friendica\Content\Text\BBCode; use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon; use Friendica\Core\Addon;