From a722c36552408cb5f85ddd45a4db22606d62c1ff Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 27 Feb 2025 10:11:03 +0100 Subject: [PATCH] plugins: style --- src/etc/inc/plugins.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/plugins.inc b/src/etc/inc/plugins.inc index a6873f396..7e8e11983 100644 --- a/src/etc/inc/plugins.inc +++ b/src/etc/inc/plugins.inc @@ -408,7 +408,7 @@ function plugins_argument_map(&$arg) if (is_array($arg)) { /* no need to deal with this now */ } elseif (is_string($arg)) { - /* backwards compat with single string arguments or transform to null if empty*/ + /* backwards compat with single string arguments or transform to null if empty */ $tmp = strlen($arg) ? explode(',', $arg) : null; } elseif (!is_null($arg)) { log_msg(sprintf('%s: plugin argument map type "%s" not supported', $caller, gettype($arg)), LOG_WARNING);