summaryrefslogtreecommitdiff
path: root/lib/VNWeb/TT/TagPage.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-01-09 17:06:25 +0100
committerYorhel <git@yorhel.nl>2021-01-10 09:31:12 +0100
commit5061421becc459f86b758eef5ca45ec4d608e954 (patch)
tree7e974ceb318d9b5e904eda1ad2a3384351c96b28 /lib/VNWeb/TT/TagPage.pm
parent5d275ce2ceb1112c1e02bbe9134b22ac478975fc (diff)
AdvSearch: Time to put this live.2.29
Moved old release browser, VN browser and tag pages to /old/, moved /experimental/ pages to /, removed warnings and updated some references.
Diffstat (limited to 'lib/VNWeb/TT/TagPage.pm')
-rw-r--r--lib/VNWeb/TT/TagPage.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNWeb/TT/TagPage.pm b/lib/VNWeb/TT/TagPage.pm
index bd545c98..9b76e4de 100644
--- a/lib/VNWeb/TT/TagPage.pm
+++ b/lib/VNWeb/TT/TagPage.pm
@@ -149,7 +149,7 @@ sub vns_ {
a_ href => "/g/links?t=$t->{id}", 'Recently tagged';
};
h1_ 'Visual novels';
- form_ action => "/experimental/g$t->{id}", method => 'get', sub {
+ form_ action => "/g$t->{id}", method => 'get', sub {
p_ class => 'browseopts', sub {
button_ type => 'submit', name => 'm', value => 0, $opt->{m} == 0 ? (class => 'optselected') : (), 'Hide spoilers';
button_ type => 'submit', name => 'm', value => 1, $opt->{m} == 1 ? (class => 'optselected') : (), 'Show minor spoilers';
@@ -166,7 +166,7 @@ sub vns_ {
}
-TUWF::get qr{/experimental/$RE{gid}}, sub {
+TUWF::get qr{/$RE{gid}}, sub {
my $t = tuwf->dbRowi('SELECT id, name, description, state, c_items, cat, defaultspoil, searchable, applicable FROM tags WHERE id =', \tuwf->capture('id'));
return tuwf->resNotFound if !$t->{id};