Skip to content

Commit

Permalink
Issue backdrop-contrib#152. Fix typo that leads to fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
argiepiano committed Mar 10, 2024
1 parent 108414a commit 28eeb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/sources.filesource.inc
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class backup_migrate_destination_filesource extends backup_migrate_source {

// Alert the user to any errors there might have been.
if ($errors) {
if (count($errors < 5)) {
if (count($errors) < 5) {
$filesmsg = t('The following files: !files', array('!files' => theme('item_list', array('items' => $errors))));
}
else {
Expand Down

0 comments on commit 28eeb5d

Please sign in to comment.