summaryrefslogtreecommitdiff
path: root/lib/global.pl
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-07-29 11:15:07 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-07-29 11:15:07 +0000
commit7aea19c2f8e71a7d630b613a57325c4dce1b1363 (patch)
treeb4c2e35d40afc7b3a0a22eb8f509c49b37f5f7db /lib/global.pl
parenta0f440de277653b3c79fd117d026855ec6b78373 (diff)
- Added release list feature
- Added noindex tag to iid-ttag browser - Replaced last poster with age of last post on home page - Merged user vote lists into new vnlist - Removed 'hide votes' feature - Fixed users+1 stats bug - Fixed FF3 JS hack - Old VNList code is still present, need to decide what to do with that git-svn-id: svn://vndb.org/vndb@74 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
Diffstat (limited to 'lib/global.pl')
-rw-r--r--lib/global.pl18
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/global.pl b/lib/global.pl
index 353ffb6d..c1ee12ab 100644
--- a/lib/global.pl
+++ b/lib/global.pl
@@ -157,6 +157,23 @@ our $CAT = {
};
+our $RSTAT = [
+ '[blank]',
+ 'Pending',
+ 'Obtained', # hardcoded
+ 'On loan',
+ 'Deleted',
+];
+our $VSTAT = [
+ '[blank]',
+ 'Playing',
+ 'Finished', # hardcoded
+ 'Stalled',
+ 'Dropped',
+];
+
+
+# OLD
our $LSTAT = [
'Wishlist',
'Blacklist',
@@ -187,7 +204,6 @@ our $VRELW = {map{$_=>1}qw| 1 7 9 |};
# users.flags
our $UFLAGS = {
- votes => 1,
list => 4,
nsfw => 8,
};