﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
16245,remove_filter makes filters applied after that useless,oddoneout,,"Here's some codes:

{{{
function run_once() {
	remove_filter( current_filter(), __FUNCTION__ );
	return 'test';
}
add_filter( 'foobar', 'run_once' );

function another_filter() {
	return 'test again';
}
add_filter( 'foobar', 'another_filter', 11 );

echo apply_filters( 'foobar', '' );
}}}

The result of this is 'test' instead of 'test again'. This might happen with remove_action, I haven't tested that function though.",defect (bug),closed,normal,,Plugins,3.0.4,major,duplicate,,
