Skip to content

Commit

Permalink
Don't use underscores in userlinksinarticles report
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Aug 4, 2023
1 parent 1e04ae3 commit ee1ba80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbreps2/src/general/userlinksinarticles.rs
Expand Up @@ -78,7 +78,7 @@ WHERE
}

fn format_row(&self, row: &Row) -> Vec<String> {
str_vec![format!("[[{}]]", row.page_title)]
str_vec![format!("[[{}]]", row.page_title.replace('_', " "))]
}

fn code(&self) -> &'static str {
Expand Down

0 comments on commit ee1ba80

Please sign in to comment.