﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,difficulty
4199,river page_handler - type/subtype filter,ismayil.khayredinov,,"It looks likes the filter fails to build a correct sql query.

Current:
{{{
if ($type != 'all') {
	$options['type'] = $type;
	if ($subtype) {
		$options['subtype'] = $subtype;
	}
}
}}}

Should be:
{{{
if ($type != 'all') {
    $options['type'] = $type;
    if ($subtype) {
        $options['type_subtype_pairs'] = array($type => $subtype);
    }
}
}}}",Defect,closed,normal,Needs Review,Core,1.8.1,minor,worksforme,,brett@…,
