PDA

View Full Version : Lowercase access names


DR_GIGGULS
10-03-2007, 03:16 PM
/nbs/templates/default/new_forum.tpl:

find:
object.innerHTML = XMLHttpRequestObject.responseText;
}
}
XMLHttpRequestObject.send(null);
}
}
</script>

below add:
<script type="text/javascript">
function CheckingExistance()
{
document.new_forum.accessname.value = document.new_forum.accessname.value.toLowerCase();
check('new_forum.php?do=check&accessname=' + document.new_forum.accessname.value, 'accessname_check');

}
</script>

find:
onkeydown="enable();" onkeyup="enable();" onblur="check('new_forum.php?do=check&accessname=' + document.new_forum.accessname.value, 'accessname_check');"

replace with:
onkeydown="enable();" onkeyup="enable();" onblur="check('new_forum.php?do=check&accessname=' + document.new_forum.accessname.value, 'accessname_check'); CheckingExistance();"


VOILA!

MasterOfAll
10-07-2007, 06:20 PM
VOILA is in Italian Languages ... In English you have to write That's all Folk`s
Good Work ^_^. (I don't have test but ... good work)

DR_GIGGULS
10-08-2007, 02:52 PM
I don't care, I'm bulgarian :)
It does work, I use it currently.

MasterOfAll
10-08-2007, 06:27 PM
Wrog mistake about my tired. Voilą is Franch. :D Don't worry more languages are imported more terms of other languages. ^_^

ImageHostDirect
12-03-2007, 07:17 PM
Works good. Thanks. :)

Choas
12-14-2007, 02:56 PM
What mean "Lowercase access names" and what is the uusage of this mode ?

DR_GIGGULS
12-16-2007, 06:50 AM
http://yourdomain.com/SomEThInG will be transformed to http://yourdomain.com/something which solves access problems.

Funky
05-14-2008, 09:36 AM
thank u its work with me ^_^