summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-11 02:00:45 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-11 02:00:45 -0400
commit69445a6179eaf8d9473b21d13a0fda9827c28bd4 (patch)
tree0184bfc7a4f6c9d31a4cbf939c2777e79bd8beba /lib
parent9b5e6de1f4f897b7d83cd76480ed0f4bf2b1edf3 (diff)
get avatar by nickname
This is to support third-party apps that want to build an URL to an avatar given a user's name. darcs-hash:20080711060045-84dde-08b0072de764d5b67ce7abe73fa0553f32de4ab3.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php
index 7627cafdc..512f2dece 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -780,6 +780,8 @@ function common_fancy_url($action, $args=NULL) {
return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : ''));
case 'noticesearchrss':
return common_path('search/notice/rss' . (($args) ? ('?' . http_build_query($args)) : ''));
+ case 'avatarbynickname':
+ return common_path($args['nickname'].'/avatar/'.$args['size']);
default:
return common_simple_url($action, $args);
}