Downloads
Download tar.gz
12.56 KB
MD5: 016e59e3fd21055bc9a7a36d26fcfb1c
SHA-1: c41aa60fabf0f7fd7f4b5ec817c51a4418721ba2
SHA-256: 8addeedbf30357852d16bd8edbe68fabd6575f7c0ca9acb7d02e0f6e8c50d1a2
Download zip
13.9 KB
MD5: 6d1a6f044fd660c6949eea62f8fc761b
SHA-1: a9127801855de952cb5b40ce53ff62ec43a3461c
SHA-256: cfb8270f6b6e1c9b81234fc94a6d787fecb726927aa53aa6a8ee92ade471d45e
Release notes
This release builds off of 1.7, but also requires that you run update.php if upgrading from the 1.x branch.
Changes:
- Tweaks to last commit to fix overlooked bugs
- Admin can now fully customize the Tweet text
As a result of the second general change, the API has changed (which is the reason for this new branch). Please see the documentation for the new API. To upgrade, simply change:
//$title is the title to use in the tweet, if any.
tweet_to_twitter($type, $title, $nid, $q);
to:
//$format is a string which indicates what text will appear in the tweet.
//[url] and [title] are replaced with the relevant URL and title, respectively.
//For example, "[url] [title] #hashtag" might output "http://example.com My Page Title #hashtag".
tweet_to_twitter($type, $format, $nid, $q);