Skip to content

Commit aa6bf22

Browse files
authored
Merge pull request #698 from PAWECOGmbH/development
Dev to Staging
2 parents 4be884c + 4abab8b commit aa6bf22

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

compose-dev.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ services:
33
image: ${LUCEE_IMAGE}:${LUCEE_IMAGE_VERSION}
44
ports:
55
- "${LUCEE_PORT}:80"
6-
restart: always
76
container_name: ${LUCEE_CONTAINER_NAME}
87
environment:
98
- LUCEE_ADMIN_PASSWORD=${LUCEE_ADMIN_PASSWORD}
@@ -20,7 +19,6 @@ services:
2019
depends_on:
2120
- lucee
2221
image: mysql:8.1
23-
restart: always
2422
container_name: ${MYSQL_CONTAINER_NAME}
2523
ports:
2624
- "${MYSQL_PORT}:3306"
@@ -60,7 +58,6 @@ services:
6058
inbucket:
6159
image: inbucket/inbucket
6260
container_name: ${INBUCKET_CONTAINER_NAME}
63-
restart: always
6461
ports:
6562
- "${INBUCKET_WEB_PORT}:9000"
6663
- "${INBUCKET_SMTP_PORT}:2500"

www/backend/core/com/language.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ component displayname="language" output="false" {
7171
} else if (structKeyExists(session, "lng")) {
7272
local.thisLang = session.lng;
7373
} else {
74-
local.thisLang = getDefaultLanguage().iso;
74+
local.thisLang = application.objLanguage.getDefaultLanguage().iso;
7575
}
7676

7777
local.searchString = structFindKey(application.langStruct[#local.thisLang#], arguments.stringToTrans, "one");

0 commit comments

Comments
 (0)