From fcf5e55f136495a5dd068219a95d8f49b2058c3d Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 11 Aug 2008 13:47:10 +0000 Subject: [PATCH] finish previous commit --- includes/Skin.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 60ddde9c2f..c9c674d06f 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -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() ); -- 2.20.1