From: Aaron Schulz Date: Mon, 11 Aug 2008 13:47:10 +0000 (+0000) Subject: finish previous commit X-Git-Tag: 1.31.0-rc.0~45955 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=fcf5e55f136495a5dd068219a95d8f49b2058c3d;p=lhc%2Fweb%2Fwiklou.git finish previous commit --- 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() );