Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

- TMS-1264: Fix Eventz to use endpoint url from env

## [1.71.3] - 2026-03-16

- TMS-1259: Disable link underline in theme.json
Expand Down
2 changes: 1 addition & 1 deletion lib/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private function define() {
}

if ( ! defined( 'PIRKANMAA_EVENTZ_API_URL' ) ) {
define( 'PIRKANMAA_EVENTZ_API_URL', 'https://backend.ver5.eventz.today/' );
define( 'PIRKANMAA_EVENTZ_API_URL', env( 'PIRKANMAA_EVENTZ_API_URL' ) ?? '' );
}

if ( ! defined( 'PIRKANMAA_EVENTZ_API_KEY' ) ) {
Expand Down
Loading