mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-02 17:52:59 +01:00
ANSI: fix E_NOTICE when overflowing text overflows screen vertical
This commit is contained in:
parent
89188ec570
commit
5c792f6bc1
@ -446,7 +446,7 @@ class File_ANSI
|
|||||||
|
|
||||||
if ($this->x > $this->max_x) {
|
if ($this->x > $this->max_x) {
|
||||||
$this->x = 0;
|
$this->x = 0;
|
||||||
$this->y++;
|
$this->_newLine();
|
||||||
} else {
|
} else {
|
||||||
$this->x++;
|
$this->x++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user