Remove highlight private sniffing and set key logic and filter for highlight
This commit is contained in:
parent
036b8fcc80
commit
b0a0698c06
6
user.php
6
user.php
|
@ -59,7 +59,8 @@ if(isset($_GET["p"])){
|
||||||
$h_question = $db->query("SELECT * FROM questions WHERE id = " . $_GET["p"] . ";")->fetchArray(SQLITE3_ASSOC);
|
$h_question = $db->query("SELECT * FROM questions WHERE id = " . $_GET["p"] . ";")->fetchArray(SQLITE3_ASSOC);
|
||||||
$h_user = $db->query("SELECT * FROM users WHERE id = " . $h_question["by"] . ";")->fetchArray(SQLITE3_ASSOC);
|
$h_user = $db->query("SELECT * FROM users WHERE id = " . $h_question["by"] . ";")->fetchArray(SQLITE3_ASSOC);
|
||||||
|
|
||||||
if($p_user["id"] == $h_question["user"]){ // Only show question that are for this user
|
$q_key = md5($h_question["question"]);
|
||||||
|
if($p_user["id"] == $h_question["user"] and ($h_question["private"] != 1 or $q_md5 != $_GET["key"])){ // Only show question that are for this user
|
||||||
|
|
||||||
echo('<div class="highlighted-post">');
|
echo('<div class="highlighted-post">');
|
||||||
|
|
||||||
|
@ -82,7 +83,7 @@ if(isset($_GET["p"])){
|
||||||
echo("\t<p class='question-text'>". $h_question["question"] ."</p>\n");
|
echo("\t<p class='question-text'>". $h_question["question"] ."</p>\n");
|
||||||
|
|
||||||
// Footer
|
// Footer
|
||||||
if($is_h_question_user){
|
if($is_current_user){
|
||||||
echo("\t<a href='/action/reply.php?q=".$h_question["id"]."'>reply</a> ");
|
echo("\t<a href='/action/reply.php?q=".$h_question["id"]."'>reply</a> ");
|
||||||
echo("\t<a href='/action/delete-question.php?q=".$h_question["id"]."'>delete</a> ");
|
echo("\t<a href='/action/delete-question.php?q=".$h_question["id"]."'>delete</a> ");
|
||||||
echo("fav ignore ");
|
echo("fav ignore ");
|
||||||
|
@ -204,6 +205,7 @@ if(isset($_GET["p"])){
|
||||||
$time->settimestamp($current["q_date"]);
|
$time->settimestamp($current["q_date"]);
|
||||||
echo("\t\t\t\t\t");
|
echo("\t\t\t\t\t");
|
||||||
$tmp_get["p"] = $current["id"];
|
$tmp_get["p"] = $current["id"];
|
||||||
|
$tmp_get["key"] = md5($current["question"]);
|
||||||
echo('<a href="' . redirect("user", $tmp_get) . '">');
|
echo('<a href="' . redirect("user", $tmp_get) . '">');
|
||||||
echo("<p class='question-date'>" . $time->format("Y-m-d h:i:s") . "</p>");
|
echo("<p class='question-date'>" . $time->format("Y-m-d h:i:s") . "</p>");
|
||||||
echo("</a>\n");
|
echo("</a>\n");
|
||||||
|
|
Loading…
Reference in New Issue