• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Znote] issues with forum

Takaloco

New Member
Joined
Nov 11, 2021
Messages
2
Reaction score
1
Hi, good morning! Im currently running into this issue, can anyone point me in the right direktion?
Latest Znote
TfS 1.4

Code:
 $getForum = getValue($_GET['forum']);
 $getThread = getValue($_GET['thread']);

 $new_thread_category = getValue($_POST['new_thread_category']);
 $new_thread_cid = getValue($_POST['new_thread_cid']);

 $create_thread_cid = getValue($_POST['create_thread_cid']);
 $create_thread_title = getValue($_POST['create_thread_title']);
 $create_thread_text = getValue($_POST['create_thread_text']);
 $create_thread_category = getValue($_POST['create_thread_category']);

 $update_thread_id = getValue($_POST['update_thread_id']);
 $update_thread_title = getValue($_POST['update_thread_title']);
 $update_thread_text = getValue($_POST['update_thread_text']);

 $edit_thread = getValue($_POST['edit_thread']);
 $edit_thread_id = getValue($_POST['edit_thread_id']);

 $reply_thread = getValue($_POST['reply_thread']);
 $reply_text = getValue($_POST['reply_text']);
 $reply_cid = getValue($_POST['reply_cid']);

 $edit_post = getValue($_POST['edit_post']);
 $edit_post_id = getValue($_POST['edit_post_id']);

 $update_post_id = getValue($_POST['update_post_id']);
 $update_post_text = getValue($_POST['update_post_text']);

//Takaloco
 
Back
Top