diff -r 2529833a7731 -r 27377179fe58 includes/clientside/static/ajax.js --- a/includes/clientside/static/ajax.js Mon Jun 30 17:22:29 2008 -0400 +++ b/includes/clientside/static/ajax.js Wed Jul 02 19:36:44 2008 -0400 @@ -149,7 +149,11 @@ if ( !box ) return false; - var newname = ( obj.getElementsByTagName('input')[0] ).value; + var input = obj.getElementsByTagName('input')[0]; + console.debug(obj, input); + if ( !input ) + return false; + var newname = input.value; newname = trim(newname); if ( newname.length < 1 )