Index: branches/new-installer/phase3/includes/installer/Installer.php |
— | — | @@ -608,9 +608,10 @@ |
609 | 609 | |
610 | 610 | /** Environment check for writable config/ directory */ |
611 | 611 | function envCheckWriteableDir() { |
612 | | - $configDir = $this->getVar( 'IP' ) . '/config'; |
| 612 | + $ipDir = $this->getVar( 'IP' ); |
| 613 | + $configDir = $ipDir . '/config'; |
613 | 614 | if( !is_writeable( $configDir ) ) { |
614 | | - $this->showMessage( 'config-dir-not-writable', $configDir ); |
| 615 | + $this->showMessage( 'config-dir-not-writable', $ipDir ); |
615 | 616 | return false; |
616 | 617 | } |
617 | 618 | } |