mirror of
https://github.com/getgrav/grav.git
synced 2026-02-10 08:37:43 +01:00
url decode to allow complex syntax in actions
This commit is contained in:
@@ -166,7 +166,7 @@ trait ParsedownGravTrait
|
||||
|
||||
// loop through actions for the image and call them
|
||||
foreach ($actions as $action) {
|
||||
$medium = call_user_func_array(array($medium, $action['method']), explode(',', $action['params']));
|
||||
$medium = call_user_func_array(array($medium, $action['method']), explode(',', urldecode($action['params'])));
|
||||
}
|
||||
|
||||
if (isset($url['fragment'])) {
|
||||
|
||||
Reference in New Issue
Block a user