Add copy_link to article header
This commit is contained in:
parent
50bd662e99
commit
41ed0a7df9
|
@ -239,6 +239,15 @@ $iconv_enable = true;
|
|||
// '^de\.' => "german.inc"
|
||||
// );
|
||||
|
||||
// Get server protocol etc. into string
|
||||
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') {
|
||||
$sitelink = "https";
|
||||
} else {
|
||||
$sitelink = "http";
|
||||
}
|
||||
$sitelink .= "://";
|
||||
$sitelink .= $_SERVER['HTTP_HOST'];
|
||||
|
||||
/*
|
||||
* Do not edit anything below this line
|
||||
*/
|
||||
|
|
|
@ -485,7 +485,7 @@ function show_header($head, $group, $local_poster = false)
|
|||
function show_header_short($head, $group, $local_poster = false)
|
||||
{
|
||||
global $article_show, $text_header, $file_article, $file_thread, $attachment_show;
|
||||
global $file_attachment, $anonym_address, $CONFIG, $config_name;
|
||||
global $file_attachment, $anonym_address, $CONFIG, $config_name, $sitelink;
|
||||
if (isset($_COOKIE['tzo'])) {
|
||||
$offset = $_COOKIE['tzo'];
|
||||
} else {
|
||||
|
@ -532,6 +532,10 @@ function show_header_short($head, $group, $local_poster = false)
|
|||
?>
|
||||
<p id="<?php echo $head->id; ?>" style="position: absolute; z-index: -9999;"><?php echo htmlspecialchars($head->id); ?></p>
|
||||
<a href="#" onclick="CopyToClipboard('<?php echo $head->id; ?>');return false;" style="text-decoration: none" title="Copy message-id to clipboard"><i>copy mid</i></a>
|
||||
|
||||
<p id="<?php echo $head->number . 'copy'; ?>" style="position: absolute; z-index: -9999;"><?php echo $sitelink . '/' . $config_name . '/article-flat.php?id=' . $head->number . '&group=' . urlencode($group) . '#' . $head->number; ?></p>
|
||||
<a href="#" onclick="CopyToClipboard('<?php echo $head->number . 'copy'; ?>');return false;" style="text-decoration: none" title="Copy article link to clipboard"><i>copy link</i></a>
|
||||
|
||||
<?php
|
||||
|
||||
echo ' Newsgroups: ';
|
||||
|
|
Loading…
Reference in New Issue