1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-05 14:17:26 +02:00

Fix a typo

This commit is contained in:
Jakub Vrana
2025-06-25 14:39:55 +02:00
parent 4cb09852e3
commit 9e8de24e3d

View File

@@ -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;