I would think it is, I've be able to grab the get var using javascript but for some reason its not adding it to the input.
All edits are made in the
newthread template
Just below <head> I added this:
Code:
<script type="text/javascript">
// this function grabs the hey from &title=hey
function getUrlVars() {
var vars = {},
parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {
vars[key] = value;
});
return vars;
}
// Making life easier, cleaning text up and relevant get var
var newtitle = decodeURIComponent(getUrlVars()["title"]);
// this should add the hey as the inputs value but it doesn't and I'm not sure why
document.getElementById("titlefromurl").value=newtitle;
</script>
and added new id to the relevant input:
Code:
<input id="titlefromurl" type="text" class="bginput" name="subject"
Obviously this only partially works and so not very helpful to you just yet but I thought I would post it in case others my be able to do something with it and get it working.