diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-05-10 10:08:34 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-05-10 10:08:34 -0700 |
commit | 0c725e2ceeb9abf2e8b625961548928fa9bca9b2 (patch) | |
tree | f137f97291789603a1edff082dc42fb98db0a38d | |
parent | a198fe67109af23a398f8a152d693074dc041396 (diff) | |
download | elgg-0c725e2ceeb9abf2e8b625961548928fa9bca9b2.tar.gz elgg-0c725e2ceeb9abf2e8b625961548928fa9bca9b2.tar.bz2 |
Fixes #4507. Corrected typo for twitter interstitial page.
-rw-r--r-- | CHANGES.txt | 11 | ||||
-rw-r--r-- | mod/twitter_api/lib/twitter_api.php | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 11060aa2d..460c3b538 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,14 @@ +Version 1.8.5 +(May 15, 2012 from https://github.com/Elgg/Elgg/tree/1.8) + + Contributing Developers: + * Brett Profitt + + Bugfixes: + * Twitter API: New users are forwarded to the correct page after creating + an account with Twitter. + + Version 1.8.4 (April 24, 2012 from https://github.com/Elgg/Elgg/tree/1.8) diff --git a/mod/twitter_api/lib/twitter_api.php b/mod/twitter_api/lib/twitter_api.php index 355123992..fbce00d34 100644 --- a/mod/twitter_api/lib/twitter_api.php +++ b/mod/twitter_api/lib/twitter_api.php @@ -109,7 +109,7 @@ function twitter_api_login() { $user = twitter_api_create_user($twitter); $site_name = elgg_get_site_entity()->name; system_message(elgg_echo('twitter_api:login:email', array($site_name))); - $forward = "twitter_api/intersitial"; + $forward = "twitter_api/interstitial"; } // set twitter services tokens |