summaryrefslogtreecommitdiffstats
path: root/long_list.cgi
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-07-31 17:59:16 +0200
committerjocuri%softhome.net <>2004-07-31 17:59:16 +0200
commit7cea397f3ea0988b4edd4b2225fc65bf28b63611 (patch)
treecc816110085482132e5ed31b21dacc377a48d20b /long_list.cgi
parent4c1db37570469aef2c7cc9f2ad9f859560ca8851 (diff)
downloadbugzilla-7cea397f3ea0988b4edd4b2225fc65bf28b63611.tar.gz
bugzilla-7cea397f3ea0988b4edd4b2225fc65bf28b63611.tar.xz
Patch for bug 253357: replace IFNULL with COALESCE for increased database compatibility; patch by Tomas Kopal <Tomas.Kopal@altap.cz>; r=vladd, a=justdave.
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-xlong_list.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/long_list.cgi b/long_list.cgi
index 657ff9e24..5644a5323 100755
--- a/long_list.cgi
+++ b/long_list.cgi
@@ -42,7 +42,7 @@ my $cgi = Bugzilla->cgi;
my $generic_query = "
SELECT
bugs.bug_id,
- IFNULL(bugs.alias,''),
+ COALESCE(bugs.alias, ''),
products.name,
bugs.version,
bugs.rep_platform,