i cant find this in postings.php
Open: postings.php
---------------------------------------------------
FIND:
case 'removeredirect':
$threadid = verify_id('thread', $_POST['threadid']);
break;
---------------------------------------------------
---------------------------------------------------
REPLACE WITH:
case 'removeredirect':
$threadid = verify_id('thread', iif($_POST['threadid'],$_POST['threadid'],$_GET['threadid']));
break;
|