Skip to content

Commit

Permalink
quickfixed doubling sections with array_unique
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Mar 31, 2017
1 parent 131a8c9 commit 5a6e199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/ReadmeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function getSections()
$this->_sections = ['Requirements', 'Installation', 'Idea', 'Configuration', 'Basic Usage', 'Usage', 'Support', 'License', 'Acknowledgements', 'Acknowledgments'];
}

return $this->_sections;
return array_unique($this->_sections);
}

/**
Expand Down

0 comments on commit 5a6e199

Please sign in to comment.