diff -r 5e8fd89c02ea -r a38876c0793c includes/clientside/static/autocomplete.js --- a/includes/clientside/static/autocomplete.js Sun Jun 22 18:13:59 2008 -0400 +++ b/includes/clientside/static/autocomplete.js Tue Jun 24 23:37:23 2008 -0400 @@ -8,21 +8,4 @@ // Replaced with Spry-based mechanism. // -function get_parent_form(o) -{ - if ( !o.parentNode ) - return false; - if ( o.tagName == 'FORM' ) - return o; - var p = o.parentNode; - while(true) - { - if ( p.tagName == 'FORM' ) - return p; - else if ( !p ) - return false; - else - p = p.parentNode; - } -}