summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Sqlite.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:04:47 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2011-12-05 18:04:47 +0100
commit6b0315b816c479f90117b69c9ff57d9c843b9397 (patch)
tree211b3c62f4d0ac1678855637e95b51c1a209cb3a /Bugzilla/DB/Sqlite.pm
parent848da716b1624bd53d7ab18dde22b09b2a0163b9 (diff)
downloadbugzilla-6b0315b816c479f90117b69c9ff57d9c843b9397.tar.gz
bugzilla-6b0315b816c479f90117b69c9ff57d9c843b9397.tar.xz
Bug 550299: User fields are left blank in buglists and whines when local user accounts are used (i.e. they have no @company.com suffix)
r/a=mkanat
Diffstat (limited to 'Bugzilla/DB/Sqlite.pm')
-rw-r--r--Bugzilla/DB/Sqlite.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/Bugzilla/DB/Sqlite.pm b/Bugzilla/DB/Sqlite.pm
index fb6aaba97..e13fd18e1 100644
--- a/Bugzilla/DB/Sqlite.pm
+++ b/Bugzilla/DB/Sqlite.pm
@@ -237,12 +237,6 @@ sub sql_date_math {
return "DATETIME($date, '$operator' || $interval || ' $units')";
}
-sub sql_string_until {
- my ($self, $string, $substring) = @_;
- my $position = $self->sql_position($substring, $string);
- return "SUBSTR($string, 1, $position - 1)"
-}
-
###############
# bz_ methods #
###############