From 01d1c3bd5f7d394d7b5ea7d3763aedcc5c8e223c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 10 Jan 2009 14:53:14 -0500 Subject: Corrected links to tagrss and add fancy URL for tag rss --- lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.php b/lib/util.php index 7518fbf55..fc45311fc 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1206,6 +1206,10 @@ function common_fancy_url($action, $args=NULL) { $path = 'tags'; } return common_path($path . (($args) ? ('?' . http_build_query($args)) : '')); + case 'tagrss': + $path = 'tag/' . $args['tag'] . '/rss'; + unset($args['tag']); + return common_path($path . (($args) ? ('?' . http_build_query($args)) : '')); case 'peopletag': $path = 'peopletag/' . $args['tag']; unset($args['tag']); @@ -1499,7 +1503,7 @@ function common_twitter_broadcast($notice, $flink) { CURLOPT_USERAGENT => "Laconica", CURLOPT_CONNECTTIMEOUT => 120, // XXX: Scary!!!! How long should this be? CURLOPT_TIMEOUT => 120, - + # Twitter is strict about accepting invalid "Expect" headers CURLOPT_HTTPHEADER => array('Expect:') ); -- cgit v1.2.3-54-g00ecf