forgot to modify Link::get_data()

This commit is contained in:
Ralf Becker 2016-07-12 15:00:05 +02:00
parent 81829c2496
commit f15b5552ad

View File

@ -1611,7 +1611,8 @@ class Link extends Link\Storage
{
throw new Exception\WrongParameter(__METHOD__."('$id')");
}
$ret = call_user_func_array('self::exec', $data);
$method = array_shift($data);
$ret = self::exec($method, $data);
if (is_resource($ret)) fseek($ret, 0);