Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5 from CodeAndWeb/master
Browse files Browse the repository at this point in the history
Fixed missing $ in variable name
  • Loading branch information
ddnetters authored Apr 25, 2017
2 parents 094e4f9 + 98456cb commit 2703767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LanguageSwitcher/Command/RenderLanguageSwitcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function handle(
}
foreach ($filesystem->allFiles($views_dir) as $file){
// Use the names of the views as networks
types[] = $file->getBaseName('.' . $file->getExtension());
$types[] = $file->getBaseName('.' . $file->getExtension());
}

if (!in_array($type, $types)) {
Expand Down

0 comments on commit 2703767

Please sign in to comment.