Skip to content

Commit

Permalink
Fix sentence typo
Browse files Browse the repository at this point in the history
  • Loading branch information
toddr committed Jan 2, 2024
1 parent 204180e commit 55850f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion elevate-cpanel
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,7 @@ EOS
$hint = q[hint: You can skip this check using --skip-cpanel-version-check] if $Cpanel::Version::Tiny::VERSION_BUILD =~ 9999;
return $self->has_blocker( <<~"EOS" );
This installation of cPanel ($Cpanel::Version::Tiny::VERSION_BUILD) does not appear to be up to date.
Please upgrade cPanel to a most recent version. $hint
Please upgrade cPanel to a more recent version. $hint
EOS
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Elevate/Blockers/WHM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ sub _blocker_cpanel_needs_update ($self) {
$hint = q[hint: You can skip this check using --skip-cpanel-version-check] if $Cpanel::Version::Tiny::VERSION_BUILD =~ 9999;
return $self->has_blocker( <<~"EOS" );
This installation of cPanel ($Cpanel::Version::Tiny::VERSION_BUILD) does not appear to be up to date.
Please upgrade cPanel to a most recent version. $hint
Please upgrade cPanel to a more recent version. $hint
EOS
}
}
Expand Down
2 changes: 1 addition & 1 deletion t/blocker-whm.t
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ my $whm = $cpev->get_blocker('WHM');
msg => qr{
\QThis installation of cPanel (11.102.0.5) does not appear to be up to date.\E
\s+
\QPlease upgrade cPanel to a most recent version.\E
\QPlease upgrade cPanel to a more recent version.\E
}xms,
},
q{obsolete version generates a blocker.}
Expand Down

0 comments on commit 55850f6

Please sign in to comment.