diff options
author | mark <mark> | 2011-05-23 21:37:10 +0000 |
---|---|---|
committer | mark <mark> | 2011-05-23 21:37:10 +0000 |
commit | 2c190ca699701d4b68deb7edccc49a4359cfcba8 (patch) | |
tree | 2d56ea96c996fb84920ae6140462d930303f5d9f /rt | |
parent | b5dbd9e1bcbb701a20ed23e723b1e0105fd7c1a1 (diff) |
fix auto-refresh, #12766
Diffstat (limited to 'rt')
-rwxr-xr-x | rt/share/html/Elements/Header | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/share/html/Elements/Header b/rt/share/html/Elements/Header index 4f48deb4d..64d548dc3 100755 --- a/rt/share/html/Elements/Header +++ b/rt/share/html/Elements/Header @@ -68,7 +68,7 @@ $id =~ s|-$||g; my $head = ''; if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) { - $head .= '<meta http-equiv="refresh" content="$Refresh" />'; + $head .= qq( <meta http-equiv="refresh" content="$Refresh" /> ); } my $WebPath = RT->Config->Get('WebPath'); |