From ff44f9292bd79f340d8aec261f74740fcc751766 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 23 Dec 2010 17:19:43 +0100 Subject: [PATCH] No need to return anything. --- framework/Db/lib/Horde/Db/Migration/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Db/lib/Horde/Db/Migration/Migrator.php b/framework/Db/lib/Horde/Db/Migration/Migrator.php index 30bf5cb21..ce25e99bb 100644 --- a/framework/Db/lib/Horde/Db/Migration/Migrator.php +++ b/framework/Db/lib/Horde/Db/Migration/Migrator.php @@ -241,7 +241,7 @@ class Horde_Db_Migration_Migrator $schemaTable = $this->_connection->createTable($this->_schemaTableName, array('primaryKey' => false)); $schemaTable->column('version', 'integer'); $schemaTable->end(); - return $this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)'); + $this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)'); } catch (Exception $e) {} } -- 2.11.0