url decode to allow complex syntax in actions

This commit is contained in:
Andy Miller
2015-09-16 16:21:40 -06:00
parent 129b5d58d7
commit 2f3c5b59a5

View File

@@ -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'])) {