Skip to content

Commit 994adaf

Browse files
committed
Use var/config/ url for redirect page
1 parent 0344d27 commit 994adaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
2-
if (file_exists(__DIR__ . '/horde/config/conf.php')) {
2+
if (file_exists(dirname(__DIR__) . '/var/config/horde/conf.php')) {
33
require_once __DIR__ . '/horde/index.php';
44
} elseif (file_exists(__DIR__ . '/wizard/index.php')) {
55
require_once __DIR__ . '/wizard/index.php';
66
} else {
7-
printf("Please create a %s file and then run 'composer horde-reconfigure' to activate Horde", dirname(__DIR__) . '/var/config/horde/conf.php');
7+
printf("Please create a %s file and then run 'composer horde:reconfigure' to activate Horde", dirname(__DIR__) . '/var/config/horde/conf.php');
88
}

0 commit comments

Comments
 (0)