diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-19 18:21:14 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-19 18:21:14 +0000 |
commit | 930f82a95170e05ad2d4fc079cc944d29521797d (patch) | |
tree | 9e6dd870f5542658c1c3ea0c8aff8038227e7d78 /htaccess.sample | |
parent | 7c0286bfcc64525b85cafb68434f0689c03519bc (diff) |
Update tag to use new framework
Broke up the tag action into two different actions (publictagcloud and
tag). Brought it up-to-date with the new framework, but haven't fixed it
for phpcs yet.
Diffstat (limited to 'htaccess.sample')
-rw-r--r-- | htaccess.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/htaccess.sample b/htaccess.sample index 10e51b5b0..b0e3e93e0 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -76,7 +76,7 @@ RewriteRule ^message/(\d+)$ index.php?action=showmessage&message=$1 [L,QSA] RewriteRule ^user/(\d+)$ index.php?action=userbyid&id=$1 [L,QSA] -RewriteRule ^tags/?$ index.php?action=tag [L,QSA] +RewriteRule ^tags/?$ index.php?action=publictagcloud [L,QSA] RewriteRule ^tag/([a-zA-Z0-9]+)/rss$ index.php?action=tagrss&tag=$1 [L,QSA] RewriteRule ^tag(/(.*))?$ index.php?action=tag&tag=$2 [L,QSA] |