diff --git a/2020/load.php b/2020/load.php index 73f4522..05819f3 100644 --- a/2020/load.php +++ b/2020/load.php @@ -1,35 +1,41 @@ . /* * This file is called after before your unversioned 'load.php' and * load some default configurations. * * You can override most of them from your 'load.php'. Example: * * define( 'SOMETHING', 'value' ); */ // define latest conference (may be different to the one of the current site) define( 'THIS_CONFERENCE_UID', 'itwikicon-2020' ); +// room permalink for this conference +define( 'ROOM_PERMALINK', 'room.php/%2$s' ); + +// do not put ?l=it in URLs +define( 'NO_LANGUAGE_IN_URLS', true ); + // require the upstream generic configuration file shared for all the conferences require __DIR__ . '/../load.php'; // require some custom 2020 stuff require __DIR__ . '/include/functions.php';