1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Bugtracker #5028 (comments not saved) possible fix

This commit is contained in:
e107steved 2010-08-27 06:53:59 +00:00
parent dcdddffb20
commit 4560c59848

View File

@ -71,12 +71,14 @@ if (isset($_POST['commentsubmit']) || isset($_POST['editsubmit']))
header("location: ".e_BASE."index.php");
exit;
}
break;
case 'user' :
if (!$sql->db_Select('user', 'user_name', '`user_id` ='.$id))
{
header("location: ".e_BASE."index.php");
exit;
}
break;
}
$pid = intval(varset($_POST['pid'], 0)); // ID of the specific comment being edited (nested comments - replies)
@ -207,6 +209,7 @@ if ($action == "reply")
$subject = $news['news_title'];
$title = COMLAN_100;
}
break;
case "poll" :
if (!$sql->db_Select("polls", "poll_title", "poll_id='{$nid}' "))
{