Skip to content

Commit 00135aa

Browse files
committed
Add information about where to find documentation in error messages.
1 parent 524defd commit 00135aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ function getDomains()
108108
{
109109

110110
if (! defined('DOMAINLIST')) {
111-
outputWarning("You are using an outdated configuration format (for configuring domain / host). This is deprecated and might become incompatible very soon. Please update to the new configuration format (using 'DOMAINLIST'). Please check the documentation for more information.");
111+
outputWarning("You are using an outdated configuration format (for configuring domain / host). This is deprecated and might become incompatible very soon. Please update to the new configuration format (using 'DOMAINLIST'). Please check the documentation in config.dist.php for more information.");
112112
if (! defined('DOMAIN')) {
113-
outputStderr("Your configuration file is incorrect. You did not configure any domains ('DOMAINLIST' or 'DOMAIN' option (deprecated) in the config). Please check the documentation. Exiting.");
113+
outputStderr("Your configuration file is incorrect. You did not configure any domains ('DOMAINLIST' or 'DOMAIN' option (deprecated) in the config). Please check the documentation in config.dist.php. Exiting.");
114114
exit(1);
115115
}
116116
if (! defined('HOST')) {
117-
outputStderr("Your configuration file is incorrect. You did not configure any hosts (subdomains; 'HOST' option in the config). Please check the documentation. Exiting.");
117+
outputStderr("Your configuration file is incorrect. You did not configure any hosts (subdomains; 'HOST' option in the config). Please check the documentation in config.dist.php. Exiting.");
118118
exit(1);
119119
}
120120
return array(DOMAIN => array(HOST));

0 commit comments

Comments
 (0)