mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
bugfix mustal default values forced lower case
This commit is contained in:
parent
9a6ed1ae75
commit
1637bf965a
4
vendor/mustal/mustal_mysql_upgrade_tool.php
vendored
4
vendor/mustal/mustal_mysql_upgrade_tool.php
vendored
@ -469,9 +469,9 @@ function mustal_column_sql_create_property_definition(string $property, string $
|
|||||||
// Replaces different variants of the same function mustal_to allow comparison
|
// Replaces different variants of the same function mustal_to allow comparison
|
||||||
function mustal_sql_replace_reserved_functions(array &$column, array $replacers) {
|
function mustal_sql_replace_reserved_functions(array &$column, array $replacers) {
|
||||||
|
|
||||||
$result = strtolower($column['Default']);
|
$result = $column['Default'];
|
||||||
foreach ($replacers as $replace) {
|
foreach ($replacers as $replace) {
|
||||||
if ($result == $replace[0]) {
|
if (strtolower($column['Default']) == $replace[0]) {
|
||||||
$result = $replace[1];
|
$result = $replace[1];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user