|
@@ 70-73 (lines=4) @@
|
| 67 |
|
// install.phpのチェック. |
| 68 |
|
if (isset($app['config']['eccube_install']) && $app['config']['eccube_install'] == 1) { |
| 69 |
|
$file = $app['config']['root_dir'] . '/html/install.php'; |
| 70 |
|
if (file_exists($file)) { |
| 71 |
|
$message = $app->trans('admin.install.warning', array('installphpPath' => 'html/install.php')); |
| 72 |
|
$app->addWarning($message, 'admin'); |
| 73 |
|
} |
| 74 |
|
$fileOnRoot = $app['config']['root_dir'] . '/install.php'; |
| 75 |
|
if (file_exists($fileOnRoot)) { |
| 76 |
|
$message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
|
@@ 75-78 (lines=4) @@
|
| 72 |
|
$app->addWarning($message, 'admin'); |
| 73 |
|
} |
| 74 |
|
$fileOnRoot = $app['config']['root_dir'] . '/install.php'; |
| 75 |
|
if (file_exists($fileOnRoot)) { |
| 76 |
|
$message = $app->trans('admin.install.warning', array('installphpPath' => 'install.php')); |
| 77 |
|
$app->addWarning($message, 'admin'); |
| 78 |
|
} |
| 79 |
|
} |
| 80 |
|
|
| 81 |
|
// 受注マスター検索用フォーム |