Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Increase readability #741

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing funcion name case mismatch
  • Loading branch information
rotelok committed Jun 16, 2018
commit 52d8440dc564aef8ca9d612c14e799fd34bae748
4 changes: 2 additions & 2 deletions lib/get-branch.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function parseGitignore($file) { # $file = '/absolute/path/to/.gitignore'
ftpEnd();
// or get local list
} else {
$finalArray = scanDir($scanDir.$location);
$finalArray = scandir($scanDir.$location);
}

foreach($finalArray as $entry) {
Expand Down Expand Up @@ -479,4 +479,4 @@ function parseGitignore($file) { # $file = '/absolute/path/to/.gitignore'
}
</script>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion lib/updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function copyOverSettings($icvInfo) {
transposeSettings(PATH."lib/config___users-template.php","config___users-template.php","config___users-template.php");

// Users settings files
$fileList = scanDir(PATH."lib/");
$fileList = scandir(PATH."lib/");
for ($i=0; $i<count($fileList); $i++) {
if (strpos($fileList[$i],"config-") > -1) {
echo 'Transposing users settings file '.$fileList[$i].'...<br>';
Expand Down