summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2010-11-01 17:22:36 +0100
committerYorhel <git@yorhel.nl>2010-11-01 17:22:36 +0100
commita36e8bf7a860a7ab069b98caefad21352c70a849 (patch)
tree55398162ed8fdc5587c25afbc0174cc393daff95 /data
parent0b16b689e87196807d60571726330207e689d107 (diff)
Properly order the relations listed on producer pages
And changed the order a bit, as suggested by ImmLff.
Diffstat (limited to 'data')
-rw-r--r--data/global.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/data/global.pl b/data/global.pl
index 5696de9a..61046bd8 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -53,12 +53,12 @@ our %S = (%S,
prod_relations => {
'old' => [ 0, 'new' ],
'new' => [ 1, 'old' ],
- 'sub' => [ 2, 'par' ],
- 'par' => [ 3, 'sub' ],
- 'imp' => [ 4, 'ipa' ],
- 'ipa' => [ 5, 'imp' ],
- 'spa' => [ 6, 'ori' ],
- 'ori' => [ 7, 'spa' ],
+ 'spa' => [ 2, 'ori' ],
+ 'ori' => [ 3, 'spa' ],
+ 'sub' => [ 4, 'par' ],
+ 'par' => [ 5, 'sub' ],
+ 'imp' => [ 6, 'ipa' ],
+ 'ipa' => [ 7, 'imp' ],
},
age_ratings => [undef, 0, 6..18],
release_types => [qw|complete partial trial|],