﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
10034	wp_list_pages(): pass args $r to apply_filters()	antonylesuisse		"{{{
A one line fix:

- $output = apply_filters('wp_list_pages', $output);
+ $output = apply_filters('wp_list_pages', $output, $r);

It would allow filters to test clauses such as 'child_of==0'.

I currently use the following hack in the filter function:
$bt=debug_backtrace();
$r=$bt[3][""args""][0];
}}}"	enhancement	closed	low	2.9	Template	2.8	minor	fixed	has-patch commit	
