Closed GoogleCodeExporter closed 9 years ago
i just comment the line out
Original comment by ldoug...@gmail.com
on 9 Jan 2010 at 9:59
comment it out in config.php
Original comment by ldoug...@gmail.com
on 9 Jan 2010 at 10:14
Sorry, please report issues in English :-)
Translation:
May I use Chinese?
This code in function twitter_url_shorten_callback:
if (!defined('BITLY_API_KEY')) return $match[0];
But actually in config.php
define('BITLY_API_KEY', '');
this line isn't commented out
So whether BITLY_API_KEY is defined or not,twitter_url_shorten_callback will
shorten
URLs using bit.ly
I think the code should be:
if ('' == BITLY_API_KEY) return $match[0];
Original comment by cnye...@gmail.com
on 27 Feb 2010 at 9:28
Fixed in r380
Original comment by terence.eden
on 28 Apr 2011 at 11:05
Original issue reported on code.google.com by
zhongy...@gmail.com
on 9 Jan 2010 at 7:37