From 49d8ee873aafb4deb725e205b267342b370c67e4 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 11 May 2007 21:31:29 +0000 Subject: [PATCH] - Provide working wordwrap for command help --- ext/phar/phar/clicommand.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/phar/phar/clicommand.inc b/ext/phar/phar/clicommand.inc index 59982ffe41..c20075d2a8 100755 --- a/ext/phar/phar/clicommand.inc +++ b/ext/phar/phar/clicommand.inc @@ -259,7 +259,7 @@ abstract class CLICommand { $arg = "... "; } - $inf .= $sp . $arg . $conf['inf'] . "\n"; + $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l, $sp) . "\n"; if ($conf['typ'] == 'select') { $l2 = 0; -- 2.50.1