Skip to content

Commit

Permalink
Rename votetags help group to voting.
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Aug 8, 2023
1 parent 396a90c commit 326f1ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion etc/helptopics.json
Original file line number Diff line number Diff line change
Expand Up @@ -279,11 +279,12 @@
},
{ "name": "revrate", "alias": "reviewratings" },
{
"name": "votetags", "title": "Voting",
"name": "voting", "title": "Voting",
"description": "<0>PC members can vote for papers using tags.",
"print_function": "VoteTags_HelpTopic::print",
"order": 8000
},
{ "name": "votetags", "alias": "voting" },
{
"name": "ranking", "title": "Ranking",
"description": "<0>PC members can rank papers using tags.",
Expand Down
2 changes: 1 addition & 1 deletion src/help/h_tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function print_example_allotment() {
For instance, if “#{$vt}” were a voting tag with an allotment of 10, then a PC member could assign 5 votes to a paper by adding the twiddle tag “#~{$vt}#5”.
The system automatically sums PC members’ votes into the public “#{$vt}” tag.
To search for papers by vote count, search for “", $this->hth->search_link("rorder:#$vt"),
"”. (", $this->hth->help_link("votetags"), ")</p>\n";
"”. (", $this->hth->help_link("voting"), ")</p>\n";
}

function print_example_rank() {
Expand Down
4 changes: 2 additions & 2 deletions src/settings/s_tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ static function print_tag_sitewide(SettingValues $sv) {
static function print_tag_approval(SettingValues $sv) {
$sv->print_entry_group("tag_vote_approval", null, [
"class" => "need-suggest tags",
"hint" => "<a href=\"" . $sv->conf->hoturl("help", "t=votetags") . "\">Help</a>",
"hint" => "<a href=\"" . $sv->conf->hoturl("help", "t=voting") . "\">Help</a>",
"autocomplete" => "off"
]);
}
static function print_tag_vote(SettingValues $sv) {
$sv->print_entry_group("tag_vote_allotment", null, [
"class" => "need-suggest tags",
"hint" => "“vote#10” declares an allotment of 10 votes per PC member. (<a href=\"" . $sv->conf->hoturl("help", "t=votetags") . "\">Help</a>)",
"hint" => "“vote#10” declares an allotment of 10 votes per PC member. (<a href=\"" . $sv->conf->hoturl("help", "t=voting") . "\">Help</a>)",
"autocomplete" => "off"
]);
}
Expand Down

0 comments on commit 326f1ce

Please sign in to comment.