mirror of
https://github.com/vrana/adminer.git
synced 2025-08-15 11:04:02 +02:00
Allow % in view definer (thanks to Tomas Votruba)
This commit is contained in:
@@ -521,7 +521,7 @@ username.form['driver'].onchange();
|
|||||||
}
|
}
|
||||||
if ($is_view) {
|
if ($is_view) {
|
||||||
// remove DEFINER with current user
|
// remove DEFINER with current user
|
||||||
$create = preg_replace('~^([A-Z =]+) DEFINER=`' . str_replace("@", "`@`", logged_user()) . '`~', '\\1', $create); //! proper escaping of user
|
$create = preg_replace('~^([A-Z =]+) DEFINER=`' . preg_replace('~@(.*)~', '`@`(%|\\1)', logged_user()) . '`~', '\\1', $create); //! proper escaping of user
|
||||||
}
|
}
|
||||||
echo ($style != "CREATE+ALTER" ? $create : ($is_view ? substr_replace($create, " OR REPLACE", 6, 0) : substr_replace($create, " IF NOT EXISTS", 12, 0))) . ";\n\n";
|
echo ($style != "CREATE+ALTER" ? $create : ($is_view ? substr_replace($create, " OR REPLACE", 6, 0) : substr_replace($create, " IF NOT EXISTS", 12, 0))) . ";\n\n";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user