Repro
Boot any fresh 4.0.x app (verified on CommandBox + wheels-base-template 4.0.3, Lucee 7.0.4.34) and load the homepage. The congratulations/welcome page renders correctly ('Running successfully', Wheels 4.0.3) but the browser tab says Wheels - Error.
Root cause
vendor/wheels/public/views/congratulations.cfm:6 includes ../layout/_header_simple.cfm, and vendor/wheels/public/layout/_header_simple.cfm:39 hardcodes:
<title>Wheels - Error</title>
The header partial was written for the error page and reused by the welcome page without parameterizing the title. Still present on origin/develop at the same line.
Impact
The very first impression of every successful fresh install — LuCLI and CommandBox alike — is a tab titled 'Error'. Cosmetic but maximally visible.
Suggested fix
Parameterize the title (e.g. <cfparam name="pageTitle" default="Wheels"> in the partial, set pageTitle before the include in congratulations.cfm vs the error view), or default the partial title to plain 'Wheels'.
Evidence from audit journey j1-template-install, 2026-06-12.
Repro
Boot any fresh 4.0.x app (verified on CommandBox + wheels-base-template 4.0.3, Lucee 7.0.4.34) and load the homepage. The congratulations/welcome page renders correctly ('Running successfully', Wheels 4.0.3) but the browser tab says Wheels - Error.
Root cause
vendor/wheels/public/views/congratulations.cfm:6includes../layout/_header_simple.cfm, andvendor/wheels/public/layout/_header_simple.cfm:39hardcodes:The header partial was written for the error page and reused by the welcome page without parameterizing the title. Still present on origin/develop at the same line.
Impact
The very first impression of every successful fresh install — LuCLI and CommandBox alike — is a tab titled 'Error'. Cosmetic but maximally visible.
Suggested fix
Parameterize the title (e.g.
<cfparam name="pageTitle" default="Wheels">in the partial, setpageTitlebefore the include in congratulations.cfm vs the error view), or default the partial title to plain 'Wheels'.Evidence from audit journey j1-template-install, 2026-06-12.