diff options
author | Zdenek Prikryl <zdeny@dhcp-lab-218.englab.brq.redhat.com> | 2009-04-21 09:39:18 +0200 |
---|---|---|
committer | Zdenek Prikryl <zdeny@dhcp-lab-218.englab.brq.redhat.com> | 2009-04-21 09:39:18 +0200 |
commit | 99047bce024f1d23c953649cf56ff67e754e44ef (patch) | |
tree | f61b8e6b50de6b92e74b3602db5dcdc5af887948 /lib/Plugins | |
parent | b314b5e7fc624eb35406bdc550c1387fb43fff0a (diff) | |
download | abrt-99047bce024f1d23c953649cf56ff67e754e44ef.tar.gz abrt-99047bce024f1d23c953649cf56ff67e754e44ef.tar.xz abrt-99047bce024f1d23c953649cf56ff67e754e44ef.zip |
now search in closed bug too
Diffstat (limited to 'lib/Plugins')
-rw-r--r-- | lib/Plugins/Bugzilla.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp index b4f44b04..e43bc85c 100644 --- a/lib/Plugins/Bugzilla.cpp +++ b/lib/Plugins/Bugzilla.cpp @@ -60,7 +60,7 @@ bool CReporterBugzilla::CheckUUIDInBugzilla(const std::string& pComponent, const xmlrpc_c::paramList paramList; map_xmlrpc_params_t searchParams; map_xmlrpc_params_t ret; - std::string quicksearch = "component:\""+ pComponent +"\" statuswhiteboard:\""+ pUUID + "\""; + std::string quicksearch = "ALL component:\""+ pComponent +"\" statuswhiteboard:\""+ pUUID + "\""; searchParams["quicksearch"] = xmlrpc_c::value_string(quicksearch.c_str()); paramList.add(xmlrpc_c::value_struct(searchParams)); xmlrpc_c::rpcPtr rpc(new xmlrpc_c::rpc("Bug.search", paramList)); |