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;