[bitnami/phpmyadmin] fix wrong variables CONFIGURATION_ALLOWDENY_ (#68068)
libphpmyadmin.sh: fix wrong variables ALLOWDENY_ Signed-off-by: Nguyen Dang Trung Tien <trungtien238lnd@gmail.com>
This commit is contained in:
parent
21b4100346
commit
56502da357
|
|
@ -116,8 +116,8 @@ phpmyadmin_initialize() {
|
|||
fi
|
||||
|
||||
# Configure allow deny order/rules settings
|
||||
! is_empty_value "$CONFIGURATION_ALLOWDENY_ORDER" && phpmyadmin_conf_set "\$cfg['Servers'][\$i]['AllowDeny']['order']" "$ALLOWDENY_ORDER"
|
||||
! is_empty_value "$CONFIGURATION_ALLOWDENY_RULES" && phpmyadmin_conf_set "\$cfg['Servers'][\$i]['AllowDeny']['rules']" "array($ALLOWDENY_RULES)" yes
|
||||
! is_empty_value "$CONFIGURATION_ALLOWDENY_ORDER" && phpmyadmin_conf_set "\$cfg['Servers'][\$i]['AllowDeny']['order']" "$CONFIGURATION_ALLOWDENY_ORDER"
|
||||
! is_empty_value "$CONFIGURATION_ALLOWDENY_RULES" && phpmyadmin_conf_set "\$cfg['Servers'][\$i]['AllowDeny']['rules']" "array($CONFIGURATION_ALLOWDENY_RULES)" yes
|
||||
|
||||
# Configure automatic login with account
|
||||
if ! is_empty_value "$DATABASE_USER"; then
|
||||
|
|
|
|||
Loading…
Reference in New Issue