Skip to content

Commit

Permalink
missing semicolon (#2629)
Browse files Browse the repository at this point in the history
Rookie mistake. Fixes missing semicolon in previous pr #2624.
  • Loading branch information
tiagom62 authored and snipe committed Sep 17, 2016
1 parent 46507c9 commit e5098c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ public function getBackups()

}
closedir($handle);
rsort($files)
rsort($files);
}


Expand Down

0 comments on commit e5098c3

Please sign in to comment.