diff --git a/WebSites/WebGIM/App_Code/WebGimUtils.cs b/WebSites/WebGIM/App_Code/WebGimUtils.cs
index 0b42ba1..fda93ff 100644
--- a/WebSites/WebGIM/App_Code/WebGimUtils.cs
+++ b/WebSites/WebGIM/App_Code/WebGimUtils.cs
@@ -33,8 +33,8 @@ public class WebGimUtils
int ggSett = (int)periodo.inizio.DayOfWeek;
for (int i = 0; i < numGgRimanenti; i++)
{
- // il primo giorno è pari al giorno iniziale...
- answ = answ + (double)tabOre[i + ggSett].apertura;
+ // il primo giorno è pari al giorno iniziale... e poi calcolo il "modulo" a 7 (con "%")
+ answ = answ + (double)tabOre[(i + ggSett)%7].apertura;
}
// cerco eventuali festività che cadano nel periodo e le tolgo
foreach (DS_applicazione.CalendFesteFerieRow riga in tabCalFF)
diff --git a/WebSites/WebGIM/mod_menuBottom.ascx b/WebSites/WebGIM/mod_menuBottom.ascx
index f6cd813..afdffe1 100644
--- a/WebSites/WebGIM/mod_menuBottom.ascx
+++ b/WebSites/WebGIM/mod_menuBottom.ascx
@@ -1,4 +1,4 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="mod_menuBottom.ascx.cs"
Inherits="mod_menuBottom" %>
-