finish previous commit
authorAaron Schulz <aaron@users.mediawiki.org>
Mon, 11 Aug 2008 13:47:10 +0000 (13:47 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Mon, 11 Aug 2008 13:47:10 +0000 (13:47 +0000)
includes/Skin.php

index 60ddde9..c9c674d 100644 (file)
@@ -266,7 +266,7 @@ class Skin extends Linker {
                $this->initPage( $out );
 
                // See self::afterContentHook() for documentation
-               $this->afterContentHook();
+               $afterContent = $this->afterContentHook();
 
                $out->out( $out->headElement() );
 
@@ -286,6 +286,8 @@ class Skin extends Linker {
                $out->out( $out->mBodytext . "\n" );
 
                $out->out( $this->afterContent() );
+               
+               $out->out( $afterContent );
 
                $out->out( $this->bottomScripts() );