From 31d9cf30150d351a801a5ae5b0028bcff332b0b6 Mon Sep 17 00:00:00 2001 From: Sokolovskyy Roman Date: Thu, 20 Jul 2017 11:02:26 +0200 Subject: [PATCH] Added missing break in case --- phpseclib/File/ANSI.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpseclib/File/ANSI.php b/phpseclib/File/ANSI.php index 07624d60..927bc8b5 100644 --- a/phpseclib/File/ANSI.php +++ b/phpseclib/File/ANSI.php @@ -269,6 +269,7 @@ class ANSI array_shift($this->history); array_shift($this->history_attrs); } + break; case "\x1B[K": // Clear screen from cursor right $this->screen[$this->y] = substr($this->screen[$this->y], 0, $this->x);