From c70ad9e6a2fac022589f201e061113a4bbe74a37 Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Fri, 14 Feb 2014 12:04:12 +0000 Subject: [PATCH] Fix undefined "mibewroot" var (see issue #21) --- src/mibew/install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mibew/install/index.php b/src/mibew/install/index.php index 8bae8eab..ff8cc6f8 100644 --- a/src/mibew/install/index.php +++ b/src/mibew/install/index.php @@ -373,7 +373,7 @@ function check_status() if (!check_admin($link)) { $page['nextstep'] = getlocal("installed.login_link"); - $page['nextnotice'] = getlocal2("installed.notice", array("${mibewroot}/install/")); + $page['nextnotice'] = getlocal2("installed.notice", array(MIBEW_WEB_ROOT . "/install/")); $page['nextstepurl'] = MIBEW_WEB_ROOT . "/operator/login.php?login=admin"; }