Not necessarily a bug, but when the subject field is left blank when sending a PM, it returns saying that a subject is needed - would it be easier to set it so that if the field is left blank, "no subject" appears in the field?
Just a thought, as i forgot to add a subject a few times recently and it's returned with that message.
Code:
- <script type="text/javascript">
- <!--
- /*
- Send PM's With No Subject by Cr0w
- Copyright 2008
- Do not repost
- */
- var pForm = document.pm_form;
- pForm.onsubmit = function(){
- if(pForm.subject.value == "" || pForm.subject.value == null){
- var conf = confirm("PM has no subject!\nSend anyway?");
- if(conf){
- pForm.subject.value = "(no subject)";
- return true;
- }
- else{
- return false;
- }
- }
- }
- //-->
- </script>
There ya go.![]()
Oooh, sexy! Good work![]()