Merge pull request #1958 from fabrixxm/event_firstday
default value for firstDay in events page
This commit is contained in:
commit
c0d0298b0f
1 changed files with 2 additions and 1 deletions
|
@ -190,6 +190,7 @@ function events_content(&$a) {
|
||||||
|
|
||||||
// First day of the week (0 = Sunday)
|
// First day of the week (0 = Sunday)
|
||||||
$firstDay = get_pconfig(local_user(),'system','first_day_of_week');
|
$firstDay = get_pconfig(local_user(),'system','first_day_of_week');
|
||||||
|
if ($firstDay === false) $firstDay=0;
|
||||||
|
|
||||||
$i18n = array(
|
$i18n = array(
|
||||||
"firstDay" => $firstDay,
|
"firstDay" => $firstDay,
|
||||||
|
|
Loading…
Reference in a new issue