From 12d75baeeeb458b742dc3011abe44da56aef8c10 Mon Sep 17 00:00:00 2001 From: Annika Backstrom Date: Mon, 25 Jan 2016 04:36:41 +0000 Subject: [PATCH] Change up how Ansi and Textarea work --- classes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes.php b/classes.php index 7f3e85c..ac5e9b0 100644 --- a/classes.php +++ b/classes.php @@ -232,7 +232,7 @@ class ActionAnsi2Html extends AbstractAction { public function setUp() { - $this->setContainer( new DivContainer ); + $this->setContainer( new TextareaContainer ); $this->setFormatter( new EchoFormatter ); } @@ -276,7 +276,7 @@ class TextareaContainer extends DivContainer { public function wrap( $contents ) { - return parent::wrap( '' ); + return parent::wrap( '' ); } }