Fix occasional missing filters on re-load

This commit is contained in:
Nathan Gray 2012-05-30 16:34:20 +00:00
parent b6638adc24
commit b6760edc22

View File

@ -129,7 +129,9 @@ class etemplate_widget_nextmatch extends etemplate_widget
{
$select = substr($name, 8);
self::$request->sel_options[$select] = $_value;
unset($value[$name]);
// The client doesn't need them in content, but we can't unset them because
// some apps don't send them on re-load, pulling them from the session
//unset($value[$name]);
}
}