From a3906d4bdfe8c6cc0fe423b57380320a2f577bac Mon Sep 17 00:00:00 2001 From: sakamocchi Date: Fri, 24 Dec 2010 14:15:04 +0000 Subject: [PATCH] Modify install script bug, wrong replacement string for str_replace. git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk@1068 1ca29b6e-896d-4ea0-84a5-967f57386b96 --- utf8/install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8/install/index.php b/utf8/install/index.php index 48b9617..44053ef 100755 --- a/utf8/install/index.php +++ b/utf8/install/index.php @@ -302,7 +302,7 @@ function showInstallForm() { } */ - $basePath = str_replace('install/index.php', '', dirname(__FILE__)); + $basePath = str_replace('install', '', dirname(__FILE__)); ?>
-- 2.11.0