Skip to content

Commit f6a1ed7

Browse files
committed
Update comments
1 parent 60a4195 commit f6a1ed7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/Installer.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,16 @@ public static function postInstall(Event $event = null)
4343
$contents
4444
);
4545
file_put_contents($file, $contents);
46-
47-
// Enable Composer Autoloader AND 'index_page' is blank
46+
47+
// Enable Composer Autoloader
4848
$file = 'application/config/config.php';
4949
$contents = file_get_contents($file);
5050
$contents = str_replace(
5151
'$config[\'composer_autoload\'] = FALSE;',
5252
'$config[\'composer_autoload\'] = realpath(APPPATH . \'../vendor/autoload.php\');',
5353
$contents
5454
);
55+
// Set 'index_page' blank
5556
$contents = str_replace(
5657
'$config[\'index_page\'] = \'index.php\';',
5758
'$config[\'index_page\'] = \'\';',

0 commit comments

Comments
 (0)