From c03d2472f7ae8d017d8665ffb7d5da94a9f3505d Mon Sep 17 00:00:00 2001 From: "ghendricks%novell.com" Date: Wed, 15 Nov 2006 22:11:13 +0000 Subject: [PATCH] Bugzilla Bug 360834 Software Error when searching for an Environment git-svn-id: svn://10.0.0.236/trunk@215327 18797224-902f-48f8-a5cc-f745e15eee43 --- .../webtools/testopia/Bugzilla/Testopia/Search.pm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mozilla/webtools/testopia/Bugzilla/Testopia/Search.pm b/mozilla/webtools/testopia/Bugzilla/Testopia/Search.pm index 261fe0945c2..e17696362d1 100644 --- a/mozilla/webtools/testopia/Bugzilla/Testopia/Search.pm +++ b/mozilla/webtools/testopia/Bugzilla/Testopia/Search.pm @@ -480,15 +480,15 @@ sub init { }, "^env_categories," => sub { push(@supptables, - "INNER JOIN test_environment_map as env_map_categories - ON test_environments.environment_id = env_map_categories.environment_id"); + "INNER JOIN test_environment_map + ON test_environments.environment_id = test_environment_map.environment_id"); push(@supptables, - "INNER JOIN test_environment_element as env_element - ON env_map_categories.element_id = env_element.element_id"); + "INNER JOIN test_environment_element + ON test_environment_map.element_id = test_environment_element.element_id"); push(@supptables, - "INNER JOIN test_environment_category as env_categories - ON env_element.env_category_id = env_categories.env_category_id"); - $f = 'env_categories.env_category_id' + "INNER JOIN test_environment_category + ON test_environment_element.env_category_id = test_environment_category.env_category_id"); + $f = 'test_environment_category.env_category_id' }, "^env_elements," => sub { push(@supptables,