Skip to content

Commit

Permalink
Merge pull request #521 from felixhahnweilheim/patch-1
Browse files Browse the repository at this point in the history
fix wrong URL (use absolute url instead of relative)
  • Loading branch information
luke- authored Jan 17, 2025
2 parents 168645e + 30463d9 commit c330936
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

TBA
------------------------
- Fix #521: Fix global calendar url

1.7.0 (January 14, 2025)
------------------------
- Fix #509: Fix event type visibility
Expand Down
2 changes: 1 addition & 1 deletion helpers/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static function toCalendar(ContentContainerActiveRecord $container = null

public static function toGlobalCalendar()
{
return static::to(['calendar/global']);
return static::to(['/calendar/global']);
}

public static function toEditItemType(CalendarTypeIF $type, ContentContainerActiveRecord $container = null)
Expand Down

0 comments on commit c330936

Please sign in to comment.