From e0563103788604645068c540cee67d05448b3b52 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 17 Jun 2014 09:52:32 +0000 Subject: [PATCH] Data\Db\DbConnection: one more legacy class name Fixed, Query is now DbQuery --- library/Icinga/Data/Db/DbConnection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Data/Db/DbConnection.php b/library/Icinga/Data/Db/DbConnection.php index 239f076b9..d0eb30e24 100644 --- a/library/Icinga/Data/Db/DbConnection.php +++ b/library/Icinga/Data/Db/DbConnection.php @@ -98,7 +98,7 @@ class DbConnection implements Selectable */ public function select() { - return new Query($this); + return new DbQuery($this); } /**