diff --git a/resources/templates/debug/error-log.php b/resources/templates/debug/error-log.php index 5f2787bd..a68304df 100644 --- a/resources/templates/debug/error-log.php +++ b/resources/templates/debug/error-log.php @@ -51,7 +51,8 @@ echo esc_html( date_i18n( $get('datetime_format'), - strtotime($log->timeLogged) + // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps + strtotime($log->time_logged) ) ); ?> @@ -62,7 +63,8 @@ sprintf( // translators: Time ago. __('%s ago'), - human_time_diff(strtotime($log->timeLogged)) + // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps + human_time_diff(strtotime($log->time_logged)) ) ); ?>