From c3970047c9c8f5a7b709d97924e3c94359827c9c Mon Sep 17 00:00:00 2001 From: Jimmy Conner Date: Fri, 21 Feb 2025 22:46:14 -0600 Subject: [PATCH] Fix "Cashed" misspelling Also harmonize the phrase with the one below it --- lib/rrd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rrd.php b/lib/rrd.php index 683b694686..37e9a01f14 100644 --- a/lib/rrd.php +++ b/lib/rrd.php @@ -394,8 +394,8 @@ function __rrd_execute($command_line, $log_to_stdout, $output_flag, $rrdtool_pip if ($output == '' || $output === null) { if (debounce_run_notification('rrdtool_command_crash', 28880)) { $backtrace = cacti_debug_backtrace('RRDTOOL Error'); - $log_message = sprintf('WARNING: RRDtool Cashed executing the following command %s. %s', $command_line, $backtrace); - $email_message = __('WARNING: RRDtool Crashed execution the following command line %s. %s', $command_line, $backtrace); + $log_message = sprintf('WARNING: RRDtool Crashed executing the following command line %s. %s', $command_line, $backtrace); + $email_message = __('WARNING: RRDtool Crashed executing the following command line %s. %s', $command_line, $backtrace); cacti_log($log_message, false, 'RRDTOOL'); admin_email(__('RRDtool Command Crashed'), $email_message);