From gitlab at videolan.org Wed May 11 18:41:00 2022 From: gitlab at videolan.org (Konstantin Pavlov (@thresh)) Date: Wed, 11 May 2022 20:41:00 +0200 Subject: [www-doc] [Git][VideoLAN.org/websites][master] skipDataase: check that variables arent empty when set. Message-ID: <627c033cca47b_20294a300f8143139@gitlab.mail> Konstantin Pavlov pushed to branch master at VideoLAN organization / websites Commits: 788723c3 by Konstantin Pavlov at 2022-05-11T22:39:34+04:00 skipDataase: check that variables arent empty when set. - - - - - 1 changed file: - www.videolan.org/include/developer.php Changes: ===================================== www.videolan.org/include/developer.php ===================================== @@ -6,7 +6,7 @@ function isDeveloper() { } function skipDatabase() { - return isset($_ENV['SKIP_DATABASE']) || isset($_SERVER['SKIP_DATABASE']); + return (isset($_ENV['SKIP_DATABASE']) && !empty($_ENV['SKIP_DATABASE'])) || (isset($_SERVER['SKIP_DATABASE']) && !empty($_SERVER['SKIP_DATABASE'])); } ?> View it on GitLab: https://code.videolan.org/VideoLAN.org/websites/-/commit/788723c391860877252aee3ea0b507407ec0708c -- View it on GitLab: https://code.videolan.org/VideoLAN.org/websites/-/commit/788723c391860877252aee3ea0b507407ec0708c You're receiving this email because of your account on code.videolan.org. VideoLAN code repository instance From gitlab at videolan.org Tue May 24 16:35:22 2022 From: gitlab at videolan.org (Jean-Baptiste Kempf (@jbk)) Date: Tue, 24 May 2022 18:35:22 +0200 Subject: [www-doc] [Git][VideoLAN.org/websites][master] Update libdvdread to 6.1.3 Message-ID: <628d094acde1c_2029113201d430802dc@gitlab.mail> Jean-Baptiste Kempf pushed to branch master at VideoLAN organization / websites Commits: 270fee03 by Jean-Baptiste Kempf at 2022-05-24T18:26:21+02:00 Update libdvdread to 6.1.3 - - - - - 1 changed file: - www.videolan.org/developers/libdvdnav.php Changes: ===================================== www.videolan.org/developers/libdvdnav.php ===================================== @@ -30,7 +30,7 @@

You can also access the code online.

Get libdvdread

-

The latest version of libdvdread is 6.1.1.

+

The latest version of libdvdread is 6.1.3.

libdvdread is available through Git or by browsing the releases.

View it on GitLab: https://code.videolan.org/VideoLAN.org/websites/-/commit/270fee032380d60f6b619f0dd991710fb6946682 -- View it on GitLab: https://code.videolan.org/VideoLAN.org/websites/-/commit/270fee032380d60f6b619f0dd991710fb6946682 You're receiving this email because of your account on code.videolan.org. VideoLAN code repository instance