Live: multiple event listener bug

Live: multiple event listener bug

hi all,
just discovered a weird bug in a current jQuery version (1.3.2).
If you do this:
$(document).live('onFirst onSecond onThird', function(event) {
alert('Bind: multi event type worked:' + event.type);
});
$('a').live('click', function(event) {
$(this).trigger('onFirst');
return false;
});
the listener will never be called.
if you, on other hand, will do this:
$('a').live('click', function(event) {
$(this).trigger('onSecond');
return false;
});
everything will work as expected. it seems the live binder somehow
will ignore the first event type in multiple type listener.
here's a working example:
http://jsbin.com/elenu
I've filled the bug ticket too:
http://dev.jquery.com/ticket/5576
--