id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,focuses 38052,wp-utility.js misses function argument null,wiardvanrij,,"Since 4.6 the wp-utility is updated. The null parameter has been removed here: {{{ compiled = compiled || _.template( $( '#tmpl-' + id ).html(), null, options ); }}} to {{{ compiled = compiled || _.template( $( '#tmpl-' + id ).html(), options ); }}} Which can give the following error: {{{ wp-util.min.js:1 Uncaught TypeError: (intermediate value)(intermediate value) is not a function }}} This is fixed by adding that null value again like this: {{{ compiled = compiled || _.template( $( '#tmpl-' + id ).html(), null, options ); }}} Affects version 4.6 and 4.6.1",defect (bug),new,normal,Awaiting Review,General,4.6,major,,has-patch needs-unit-tests needs-testing,,javascript