Fix group link in results display to handle group names with special characters.
This commit is contained in:
parent
dab4ab0fb0
commit
9d2cd5d603
|
@ -195,8 +195,8 @@ foreach ($overview as $overviewline) {
|
||||||
|
|
||||||
fclose($glfp);
|
fclose($glfp);
|
||||||
# Generate link
|
# Generate link
|
||||||
$url = "../" . $section . "/article-flat.php?id=" . $overviewline['number'] . "&group=" . _rawurlencode($overviewline['newsgroup']) . "#" . $overviewline['number'];
|
$url = "../" . $section . "/article-flat.php?id=" . $overviewline['number'] . "&group=" . urlencode($overviewline['newsgroup']) . "#" . $overviewline['number'];
|
||||||
$groupurl = "../" . $section . "/thread.php?group=" . _rawurlencode($overviewline['newsgroup']);
|
$groupurl = "../" . $section . "/thread.php?group=" . urlencode($overviewline['newsgroup']);
|
||||||
$fromoutput = explode("<", html_entity_decode($overviewline['name']));
|
$fromoutput = explode("<", html_entity_decode($overviewline['name']));
|
||||||
|
|
||||||
// Use local timezone if possible
|
// Use local timezone if possible
|
||||||
|
|
Loading…
Reference in New Issue