diff --git a/install/controller/install/step_3.php b/install/controller/install/step_3.php index d0600375..068be70f 100644 --- a/install/controller/install/step_3.php +++ b/install/controller/install/step_3.php @@ -15,7 +15,7 @@ public function index() { $output .= 'define(\'HTTP_SERVER\', \'' . HTTP_OPENCART . '\');' . "\n\n"; $output .= '// HTTPS' . "\n"; - $output .= 'define(\'HTTP_SERVER\', \'' . HTTPS_OPENCART . '\');' . "\n\n"; + $output .= 'define(\'HTTPS_SERVER\', \'' . HTTP_OPENCART . '\');' . "\n\n"; $output .= '// DIR' . "\n"; $output .= 'define(\'DIR_APPLICATION\', \'' . addslashes(DIR_OPENCART) . 'catalog/\');' . "\n"; @@ -53,8 +53,8 @@ public function index() { $output .= 'define(\'HTTP_CATALOG\', \'' . HTTP_OPENCART . '\');' . "\n\n"; $output .= '// HTTPS' . "\n"; - $output .= 'define(\'HTTP_SERVER\', \'' . HTTPS_OPENCART . 'admin/\');' . "\n"; - $output .= 'define(\'HTTP_CATALOG\', \'' . HTTPS_OPENCART . '\');' . "\n\n"; + $output .= 'define(\'HTTPS_SERVER\', \'' . HTTP_OPENCART . 'admin/\');' . "\n"; + $output .= 'define(\'HTTPS_CATALOG\', \'' . HTTP_OPENCART . '\');' . "\n\n"; $output .= '// DIR' . "\n"; $output .= 'define(\'DIR_APPLICATION\', \'' . addslashes(DIR_OPENCART) . 'admin/\');' . "\n";