summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--htaccess.sample2
-rw-r--r--lib/util.php2
2 files changed, 4 insertions, 0 deletions
diff --git a/htaccess.sample b/htaccess.sample
index 702894e2e..28da7b66f 100644
--- a/htaccess.sample
+++ b/htaccess.sample
@@ -42,6 +42,8 @@ RewriteRule ^main/disfavor$ index.php?action=disfavor [L,QSA]
RewriteRule ^main/sup$ index.php?action=sup [L,QSA]
+RewriteRule ^main/tagother$ index.php?action=tagother [L,QSA]
+
RewriteRule ^settings/profile$ index.php?action=profilesettings [L,QSA]
RewriteRule ^settings/openid$ index.php?action=openidsettings [L,QSA]
RewriteRule ^settings/im$ index.php?action=imsettings [L,QSA]
diff --git a/lib/util.php b/lib/util.php
index 1365380ab..ce9e312b6 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -985,6 +985,8 @@ function common_fancy_url($action, $args=NULL) {
case 'unsubscribe':
case 'invite':
return common_path('main/'.$action);
+ case 'tagother':
+ return common_path('main/tagother?id='.$args['id']);
case 'register':
if ($args && $args['code']) {
return common_path('main/register/'.$args['code']);