summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--htaccess.sample1
-rw-r--r--lib/util.php2
2 files changed, 3 insertions, 0 deletions
diff --git a/htaccess.sample b/htaccess.sample
index 58b060b6c..034b2c641 100644
--- a/htaccess.sample
+++ b/htaccess.sample
@@ -46,6 +46,7 @@ RewriteRule ^settings/im$ index.php?action=imsettings [L,QSA]
RewriteRule ^settings/email$ index.php?action=emailsettings [L,QSA]
RewriteRule ^settings/sms$ index.php?action=smssettings [L,QSA]
RewriteRule ^settings/twitter$ index.php?action=twittersettings [L,QSA]
+RewriteRule ^settings/other$ index.php?action=othersettings [L,QSA]
RewriteRule ^search/people$ index.php?action=peoplesearch [L,QSA]
RewriteRule ^search/notice$ index.php?action=noticesearch [L,QSA]
diff --git a/lib/util.php b/lib/util.php
index edddcd2a7..eac18e55e 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -953,6 +953,8 @@ function common_fancy_url($action, $args=NULL) {
return common_path('settings/sms');
case 'twittersettings':
return common_path('settings/twitter');
+ case 'othersettings':
+ return common_path('settings/other');
case 'newnotice':
if ($args && $args['replyto']) {
return common_path('notice/new?replyto='.$args['replyto']);