Revert Docker credentials urldecode (#4998)
This commit is contained in:
@@ -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 "*";
|
||||||
|
|||||||
@@ -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
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user