diff options
author | friendica <info@friendica.com> | 2015-01-18 19:25:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-18 19:25:10 -0800 |
commit | 21da3443f30ba35225bef7e1a84fbf0ee8750b25 (patch) | |
tree | 140040569c6cd070decfad305cf03d7fb906876a /library/twitteroauth.php | |
parent | 4c45068d70c086fc1417ab95f632a560a31efca2 (diff) | |
parent | 7420896693589f1a4a5e91cef5c13852599464fd (diff) | |
download | volse-hubzilla-21da3443f30ba35225bef7e1a84fbf0ee8750b25.tar.gz volse-hubzilla-21da3443f30ba35225bef7e1a84fbf0ee8750b25.tar.bz2 volse-hubzilla-21da3443f30ba35225bef7e1a84fbf0ee8750b25.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'library/twitteroauth.php')
-rw-r--r-- | library/twitteroauth.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/twitteroauth.php b/library/twitteroauth.php index 009ad56bd..a40949534 100644 --- a/library/twitteroauth.php +++ b/library/twitteroauth.php @@ -7,7 +7,8 @@ */ /* Load OAuth lib. You can find it at http://oauth.net */ -require_once('library/OAuth1.php'); +if(!class_exists('OAuthException')) + require_once('library/OAuth1.php'); /** * Twitter OAuth class |