Author: acydburn
Date: Mon Nov 9 16:48:13 2009
New Revision: 10262
Log:
Fix for r10255
Modified:
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forum_fn.js
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forum_fn.js
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forum_fn.js (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/forum_fn.js Mon Nov 9 16:48:13 2009
***************
*** 359,365 ****
if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode))
event.which = event.charCode || event.keyCode;
! if (phpbb_set_autocomplete(event))
return true;
var current = selector['parentNode'];
--- 359,365 ----
if (!event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode))
event.which = event.charCode || event.keyCode;
! if (phpbb_check_key(event))
return true;
var current = selector['parentNode'];
|