Browse Source

Doh! Missing semicolon

Morten Brix Pedersen 24 years ago
parent
commit
3b831e9341
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/Pisg/HTMLGenerator.pm

+ 1 - 1
modules/Pisg/HTMLGenerator.pm

@@ -1582,7 +1582,7 @@ sub _replace_links
         $str =~ s/(http|https|ftp|telnet|news)(:\/\/[-a-zA-Z0-9_\/~]+\.[-a-zA-Z0-9.,_~=:&amp;@%?#\/+]+)/<a href="$1$2" target="_blank" title="Open in new window: $1$2">$1$2<\/a>/g;
         $str =~ s/([-a-zA-Z0-9._]+@[-a-zA-Z0-9_]+\.[-a-zA-Z0-9._]+)/<a href="mailto:$1" title="Mail to $1">$1<\/a>/g;
     }
-    $str =~ s/&/&amp;/g
+    $str =~ s/&/&amp;/g;
     return $str;
 }