Graham Support Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 40 Joined:
Additional Groups: Support Team
  
pmwww | PM subject (3rd Jan 08 at 1:50pm UTC) | | 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. | |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: PM subject (3rd Jan 08 at 7:47pm UTC) | |  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. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Graham Support Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 40 Joined:
Additional Groups: Support Team
  
pmwww | Re: PM subject (3rd Jan 08 at 10:01pm UTC) | | Oooh, sexy! Good work | |
|