From 326f0dad5c9bebe408595a453d92194cd4eb932e Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Fri, 18 Nov 2011 14:24:15 +0000 Subject: dont trim trailing whitespace --- it_pipe.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_pipe.class b/it_pipe.class index f9e64e2..f1cdf76 100644 --- a/it_pipe.class +++ b/it_pipe.class @@ -15,7 +15,7 @@ function __construct($p = array()) if ($p['data']) $this->lines = $p['data']; else if ($p['cmd']) - $this->lines = strlen($data = it::exec($p['cmd'], $p['args'])) ? explode("\n", rtrim($data)) : array(); + $this->lines = strlen($data = it::exec($p['cmd'], $p['args'])) ? explode("\n", rtrim($data, "\n")) : array(); else foreach ((array)($p['fn'] ? $p['fn'] : "php://stdin") as $fn) $this->lines = array_merge((array)$this->lines, file($fn, FILE_IGNORE_NEW_LINES)); -- cgit v1.2.3