From ea9a9c2fb8c23f313f6d6876e0199cd4c3f187e8 Mon Sep 17 00:00:00 2001 From: Karsten Heiken Date: Mon, 23 May 2011 15:12:22 +0200 Subject: [PATCH] Fix listing of configurations belonging to a project --- application/models/project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/project.php b/application/models/project.php index 8cac9f4..d8e427b 100644 --- a/application/models/project.php +++ b/application/models/project.php @@ -108,7 +108,7 @@ class Project extends CI_Model { $configurations = $query->result_array(); $configuration_count = $query->num_rows(); - return array('count' => $configuration_count, 'configs' => $configurations); + return $configurations; } /**