Archived
1
0

ammend nnptchan.js to use old style shorthashes

This commit is contained in:
jeff 2015-10-19 09:12:32 -04:00
parent 5420346b36
commit af85eae429

View File

@ -9,6 +9,6 @@ function nntpchan_backlink(shorthash)
var elem = document.getElementById("postform_message"); var elem = document.getElementById("postform_message");
if ( elem ) if ( elem )
{ {
elem.value += ">>" + shorthash + "\n"; elem.value += ">>" + shorthash.substr(2,10) + "\n";
} }
} }