From: Chuck Hagenbuch Date: Mon, 4 Jan 2010 03:00:41 +0000 (-0500) Subject: Default to being quiet instead of generating output (this should probably be done... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=11f2877b5c1d3971b7ff9f68fc562b222428762b;p=horde.git Default to being quiet instead of generating output (this should probably be done with a Logger anyway) --- diff --git a/framework/Db/lib/Horde/Db/Migration/Base.php b/framework/Db/lib/Horde/Db/Migration/Base.php index f1260b9ef..dfc4cc574 100644 --- a/framework/Db/lib/Horde/Db/Migration/Base.php +++ b/framework/Db/lib/Horde/Db/Migration/Base.php @@ -27,7 +27,7 @@ class Horde_Db_Migration_Base * Print messages as migrations happen * @var boolean */ - public $verbose = true; + public $verbose = false; /** * The migration version @@ -48,7 +48,7 @@ class Horde_Db_Migration_Base /** */ - public function __construct(Horde_Db_Adapter_Base $connection, $version = null, $verbose = true) + public function __construct(Horde_Db_Adapter_Base $connection, $version = null, $verbose = false) { $this->_connection = $connection; $this->version = $version;