﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
10493	Allow closures as callbacks	scribu	westi	"PHP 5.3 allows closures, which means we can replace this:

{{{
add_action('init', create_function('', '//do something'));
}}}

with this:

{{{
add_action('init', function() { // do something });
}}}

and it only requires two lines of extra code.
"	enhancement	closed	low	3.0	Plugins	2.9	minor	fixed	has-patch	mikeschinkel@…
