Skip to content

Commit 8322961

Browse files
committed
Update text helper
1 parent 8977c88 commit 8322961

File tree

2 files changed

+141
-190
lines changed

2 files changed

+141
-190
lines changed

helpers/codeigniter_modular.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ function codeigniter_hmvc_modules_list($with_location = true)
4040
$files = directory_map($location, 1);
4141
if (is_array($files)) {
4242
foreach ($files as $name) {
43-
if (is_dir($location . $name))
43+
if (is_dir($location . $name)) {
4444
$modules[] = $with_location ? array($location, $name) : $name;
45+
}
4546
}
4647
}
4748
}
4849

4950
return $modules;
5051
}
5152
}
52-

0 commit comments

Comments
 (0)