From e104379071eba1d766356ccc0515305de90e186e Mon Sep 17 00:00:00 2001 From: gyboth Date: Mon, 26 Feb 2007 20:55:27 +0000 Subject: [PATCH] Fixed twomatchweeks league display bug. --- ChangeLog | 4 +++- src/fixture.c | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 46424959..38afcde5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,7 +12,9 @@ - added definitions and names for Turkey (thanks to Onur Aydin) - corrected a bug in training camp. The counting of the training points now works correct. - - changed the costs of the training camps. + - changed the costs of the training camps + - added a couple of new tags to the XML definition system related + to weeks with two matchdays of the same competition 1/27/2007: v2.1.0 diff --git a/src/fixture.c b/src/fixture.c index f26436e8..57ee63f4 100644 --- a/src/fixture.c +++ b/src/fixture.c @@ -1215,7 +1215,7 @@ fixture_get_next_week(gint *week_number, gint *week_round_number) opt_user_int("int_opt_user_show_all_leagues"))) { *week_number = fix->week_number; - *week_round_number = 1; + *week_round_number = fix->week_round_number; } }