diff --git a/studs.php b/studs.php
index 0d3ee93..82c6853 100644
--- a/studs.php
+++ b/studs.php
@@ -333,44 +333,43 @@ if ($dsondage->format=="D"||$dsondage->format=="D+"||$dsondage->format=="D-") {
// Current date
$current = $toutsujet[$i];
+ $horoCur = explode("@",$current); //horoCur[0] = date, horoCur[1] = hour
+ if (isset($toutsujet[$i+1])){
+ $next = $toutsujet[$i+1];
+ $horoNext = explode("@",$next);
+ }
$border[$i] = false;
- $radio_title[$i] = strftime($date_format['txt_short'],$current);
+ $radio_title[$i] = strftime($date_format['txt_short'],$horoCur[0]);
// Months
$td_headers[$i] = 'M'.($i+1-$colspan_month);
- if (isset($toutsujet[$i+1]) && strftime("%B", $current) == strftime("%B", $toutsujet[$i+1]) && strftime("%Y", $current) == strftime("%Y", $toutsujet[$i+1])){
+ if (isset($toutsujet[$i+1]) && strftime("%B", $horoCur[0]) == strftime("%B", $horoNext[0]) && strftime("%Y", $horoCur[0]) == strftime("%Y", $horoNext[0])){
$colspan_month++;
} else {
$border[$i] = true;
- $tr_months .= '
'.strftime("%B",$current).' '.strftime("%Y", $current).' | ';
+ $tr_months .= ''.strftime("%B",$horoCur[0]).' '.strftime("%Y", $horoCur[0]).' | ';
$colspan_month=1;
}
// Days
$td_headers[$i] .= ' D'.($i+1-$colspan_day);
- if (isset($toutsujet[$i+1]) && strftime($date_format['txt_day'],$current)==strftime($date_format['txt_day'],$toutsujet[$i+1])&&strftime("%B",$current)==strftime("%B",$toutsujet[$i+1])){
+ if (isset($toutsujet[$i+1]) && strftime($date_format['txt_day'],$horoCur[0])==strftime($date_format['txt_day'],$horoNext[0])&&strftime("%B",$horoCur[0])==strftime("%B",$horoNext[0])){
$colspan_day++;
} else {
$rbd = ($border[$i]) ? ' rbd' : '';
- $tr_days .= ''.strftime($date_format['txt_day'],$current).' | ';
+ $tr_days .= ''.strftime($date_format['txt_day'],$horoCur[0]).' | ';
$colspan_day=1;
}
// Hours
$rbd = ($border[$i]) ? ' rbd' : '';
- if (strpos($current,'@') !== false) {
- $hour = substr($current, strpos($current, '@')-count($current)+2);
-
- if ($hour != "") {
- $tr_hours .= ''.$hour.' | ';
- $radio_title[$i] .= ' - '.$hour;
+ if ($horoCur[1] !== "") {
+ $tr_hours .= ''.$horoCur[1].' | ';
+ $radio_title[$i] .= ' - '.$horoCur[1];
$td_headers[$i] .= ' H'.$i;
- } else {
- $tr_hours .= ' | ';
- }
} else {
$tr_hours .= ' | ';
}