disable manual article rescoring
This commit is contained in:
parent
f92471951b
commit
9bf3f101cc
3 changed files with 8 additions and 6 deletions
|
@ -5106,10 +5106,12 @@
|
|||
|
||||
$score_pic = get_score_pic($score);
|
||||
|
||||
$score_title = __("(Click to change)");
|
||||
/* $score_title = __("(Click to change)");
|
||||
$score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
|
||||
onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
|
||||
|
||||
$score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
|
||||
onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">";
|
||||
title=\"$score\">";
|
||||
|
||||
if ($score > 500) {
|
||||
$hlc_suffix = "H";
|
||||
|
|
|
@ -378,7 +378,7 @@
|
|||
return;
|
||||
}
|
||||
|
||||
if ($subop == "setScore") {
|
||||
/* if ($subop == "setScore") {
|
||||
$id = db_escape_string($_REQUEST["id"]);
|
||||
$score = sprintf("%d", $_REQUEST["score"]);
|
||||
|
||||
|
@ -389,7 +389,7 @@
|
|||
|
||||
return;
|
||||
|
||||
}
|
||||
} */
|
||||
|
||||
if ($subop == "getArticles") {
|
||||
$ids = split(",", db_escape_string($_REQUEST["ids"]));
|
||||
|
|
|
@ -942,7 +942,7 @@ function viewLimitChanged() {
|
|||
return viewCurrentFeed(0, '')
|
||||
}
|
||||
|
||||
function adjustArticleScore(id, score) {
|
||||
/* function adjustArticleScore(id, score) {
|
||||
try {
|
||||
|
||||
var pr = prompt(__("Assign score to article:"), score);
|
||||
|
@ -959,7 +959,7 @@ function adjustArticleScore(id, score) {
|
|||
} catch (e) {
|
||||
exception_error("adjustArticleScore", e);
|
||||
}
|
||||
}
|
||||
} */
|
||||
|
||||
function rescoreCurrentFeed() {
|
||||
|
||||
|
|
Loading…
Reference in a new issue