@@ 133-136 (lines=4) @@ | ||
130 | // install.phpのチェック. |
|
131 | if (isset($this->appConfig['eccube_install']) && $this->appConfig['eccube_install'] == 1) { |
|
132 | $file = $this->appConfig['root_dir'] . '/html/install.php'; |
|
133 | if (file_exists($file)) { |
|
134 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'html/install.php')); |
|
135 | $app->addWarning($message, 'admin'); |
|
136 | } |
|
137 | $fileOnRoot = $this->appConfig['root_dir'] . '/install.php'; |
|
138 | if (file_exists($fileOnRoot)) { |
|
139 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
|
@@ 138-141 (lines=4) @@ | ||
135 | $app->addWarning($message, 'admin'); |
|
136 | } |
|
137 | $fileOnRoot = $this->appConfig['root_dir'] . '/install.php'; |
|
138 | if (file_exists($fileOnRoot)) { |
|
139 | $message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
|
140 | $app->addWarning($message, 'admin'); |
|
141 | } |
|
142 | } |
|
143 | ||
144 | // 受注マスター検索用フォーム |