Failed Conditions
Pull Request — master (#1798)
by Kentaro
31:49
created
eccube_install.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -306,11 +306,11 @@
 block discarded – undo
306 306
             $database['database']['dbname'] = (getenv('DBNAME') ? getenv('DBNAME') : 'cube3_dev');
307 307
             $database['database']['user'] = (getenv('DBUSER') ? getenv('DBUSER') : 'cube3_dev_user');
308 308
             $database['database']['port'] = (getenv('DBPORT') ? getenv('DBPORT') : '3306');
309
-           if (getenv('TRAVIS')) {
310
-               $database['database']['password'] = '';
311
-           } else {
312
-               $database['database']['password'] = (getenv('DBPASS') ? getenv('DBPASS') : 'password');
313
-           }
309
+            if (getenv('TRAVIS')) {
310
+                $database['database']['password'] = '';
311
+            } else {
312
+                $database['database']['password'] = (getenv('DBPASS') ? getenv('DBPASS') : 'password');
313
+            }
314 314
             break;
315 315
         case 'pdo_pgsql':
316 316
             $database['database']['host'] = (getenv('DBSERVER') ? getenv('DBSERVER') : 'localhost');
Please login to merge, or discard this patch.