Revert Docker credentials urldecode (#4998)

This commit is contained in:
Kevin Papst
2024-07-28 18:04:18 +02:00
committed by GitHub
parent 818c080d28
commit b9c1036b21
2 changed files with 6 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
<?php <?php
$DB_HOST = urldecode($argv[1]); $DB_HOST = $argv[1];
$DB_BASE = urldecode($argv[2]); $DB_BASE = $argv[2];
$DB_PORT = $argv[3]; $DB_PORT = $argv[3];
$DB_USER = urldecode($argv[4]); $DB_USER = $argv[4];
$DB_PASS = urldecode($argv[5]); $DB_PASS = $argv[5];
echo "Testing DB:"; echo "Testing DB:";
echo "*"; echo "*";

View File

@@ -17,11 +17,11 @@ class Constants
/** /**
* The current release version * The current release version
*/ */
public const VERSION = '2.19.0'; public const VERSION = '2.19.1';
/** /**
* The current release: major * 10000 + minor * 100 + patch * The current release: major * 10000 + minor * 100 + patch
*/ */
public const VERSION_ID = 21900; public const VERSION_ID = 21901;
/** /**
* The software name * The software name
*/ */