Skip to content

Commit

Permalink
Merge branch 'craigk5n:master' into cmpsr
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannon authored Aug 31, 2024
2 parents d50f136 + 2d5c0d2 commit 5734e33
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions includes/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1186,6 +1186,18 @@ table#prevmonth {
#viewt table.timebar {
width:100%;
}
#viewt table.timebar th {
width:10%;
}
#ViewT div table th {
width:10%;
}
#ViewT div table td {
width:90%;
}
#viewt table.timebar dh {
width:90%;
}
#viewt td.timebar {
width:90%;
background-color:#FFF;
Expand Down
2 changes: 1 addition & 1 deletion view_d.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
$matrixStr = daily_matrix ( $date, $participants );
$partStr = implode ( ',', $participants );
$trailerStr = print_trailer();
$wday = strftime ( '%w', mktime ( 0, 0, 0, $thismonth, $thisday, $thisyear ) );
$wday = date('w', mktime(0, 0, 0, $thismonth, $thisday, $thisyear));

$nextStr = translate ( 'Next' );
$previousStr = translate ( 'Previous' );
Expand Down

0 comments on commit 5734e33

Please sign in to comment.