diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-16 15:53:46 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-16 15:53:46 -0400 |
commit | 7416e50daa6f792f73e47141fa7ac3bfc843b1e0 (patch) | |
tree | 4de167e88ce6aad9e9a68b8d956ce9815fc10552 /lib/util.php | |
parent | d57b39e8a5596e91ffae4d583e18934b807b8e43 (diff) |
inbox and outbox for direct messages
Added an inbox and outbox for direct messages.
Factored common code to mailbox.php. Factored common code with
stream.php to personal.php.
darcs-hash:20080916195346-84dde-b5c846f713a970c41fd1b0671cb333e91f3cb920.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 55fb124f8..f0aabfa29 100644 --- a/lib/util.php +++ b/lib/util.php @@ -869,6 +869,8 @@ function common_fancy_url($action, $args=NULL) { case 'subscribers': case 'all': case 'replies': + case 'inbox': + case 'outbox': if ($args && isset($args['page'])) { return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']); } else { |