Merge branch 'master' of SkyfaR/halcyon into master

This commit is contained in:
Niklas Poslovski 2018-09-23 15:43:31 +00:00 committed by Gogs
commit 16bff8be82
1 changed files with 4 additions and 4 deletions

View File

@ -52,12 +52,12 @@ rewrite ^/notifications/?$ /notifications.php break;
rewrite ^/whotofollow/?$ /who_to_follow.php break;
# Direct
rewrite ^/direct/?$ direct.php break;
rewrite ^/direct/?$ /direct.php break;
# Lists
rewrite ^/lists/?$ lists.php break;
rewrite ^/lists/(\d+)/?$ lists_view.php?id=$1 break;
rewrite ^/lists/(\d+)/add/?$ lists_add.php?id=$1 break;
rewrite ^/lists/?$ /lists.php break;
rewrite ^/lists/(\d+)/?$ /lists_view.php?id=$1 break;
rewrite ^/lists/(\d+)/add/?$ /lists_add.php?id=$1 break;
# Search
rewrite ^/search/?$ /search_hash_tag.php break;