correct comment; javascript is put after <body>
authorJoey Hess <joey@kitenet.net>
Thu, 12 Aug 2010 18:29:22 +0000 (14:29 -0400)
committerJoey Hess <joey@kitenet.net>
Thu, 12 Aug 2010 18:29:22 +0000 (14:29 -0400)
IkiWiki/Plugin/relativedate.pm
IkiWiki/Plugin/toggle.pm

index c9280ef14799dbecdba10c0bcc259027a245d2fc..7296889ab28f21c9c642e468d503dc502428ede7 100644 (file)
@@ -27,7 +27,7 @@ sub format (@) {
         my %params=@_;
 
        if (! ($params{content}=~s!^(<body[^>]*>)!$1.include_javascript($params{page})!em)) {
-               # no </body> tag, probably in preview mode
+               # no <body> tag, probably in preview mode
                $params{content}=include_javascript($params{page}, 1).$params{content};
        }
        return $params{content};
index 20967d3fd79e85fb5f0e677b0a7d76eb6e7ac38f..1f93f87fe5f714e4b22e195cdc9b780311c14c65 100644 (file)
@@ -69,7 +69,7 @@ sub format (@) {
        if ($params{content}=~s!(<div class="toggleable(?:-open)?" id="[^"]+">\s*)</div>!$1!g) {
                $params{content}=~s/<div class="toggleableend">//g;
                if (! ($params{content}=~s!^(<body[^>]*>)!$1.include_javascript($params{page})!em)) {
-                       # no </body> tag, probably in preview mode
+                       # no <body> tag, probably in preview mode
                        $params{content}=include_javascript($params{page}, 1).$params{content};
                }
        }