From 9e8de24e3d415995a01014e9c6c78d6b2b9a5d0a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 25 Jun 2025 14:39:55 +0200 Subject: [PATCH] Fix a typo --- adminer/include/plugins.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/include/plugins.inc.php b/adminer/include/plugins.inc.php index 5523d939..387192e0 100644 --- a/adminer/include/plugins.inc.php +++ b/adminer/include/plugins.inc.php @@ -67,7 +67,7 @@ class Plugins { function __call(string $name, array $params) { $args = array(); foreach ($params as $key => $val) { - // some plugins accept params by reference - we don't need to propage it outside, just to the other plugins + // some plugins accept params by reference - we don't need to propagate it outside, just to the other plugins $args[] = &$params[$key]; } $return = null;