Edit
for those who want to upload a new file;
new version extras.php
Save as extras.php (in stead of extras.phps) and upload it to ‘wp-content/themes/make/inc/’
/Edit
i fixed it by editing the lines 652 from:
return apply_filters_ref_array( $filter, func_get_args() );
to
$arg_list = func_get_args();
return apply_filters_ref_array( $filter, $arg_list );
and the line 699 from
do_action_ref_array( $action, func_get_args() );
to
$arg_list = func_get_args();
do_action_ref_array( $action, $arg_list );
good luck.
\\edit.. ah. there has been published a fix. ??