aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
Commit message (Collapse)AuthorAgeFilesLines
* Bug 282145: Bug.pm is too slow for general usemkanat%kerio.com2005-03-091-88/+180
| | | | Patch By Max Kanat-Alexander <mkanat@kerio.com> r=gerv, a=myk
* Bug 283919: Move BugAliasToID out of CGI.pl into Bugzilla::Bugmkanat%kerio.com2005-03-091-1/+16
| | | | Patch By Max Kanat-Alexander <mkanat@kerio.com> r=LpSolit, a=myk
* Bug 283924: Move ValidateComment out of CGI.plmkanat%kerio.com2005-03-071-0/+15
| | | | Patch By Max Kanat-Alexander <mkanat@kerio.com> r=LpSolit, a=justdave
* Bug 277782: _throw_error should unlock tables when tables are locked, ↵mkanat%kerio.com2005-03-051-6/+3
| | | | | | automatically Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=travis, r=LpSolit, a=justdave
* Bug 283567 : Toggling a comment's privacy does nothing (regression from bug ↵travis%sedsystems.ca2005-03-011-0/+1
| | | | | | 279700) Patch by : Frederic Buclin <LpSolit@gmail.com> r=mkanat a=justdave
* Bug (None): Fix for checkin from Bug 280493, fix a trailing comma in Bug.pmmkanat%kerio.com2005-02-251-1/+1
| | | | Thanks to glob for pointing it out.
* Bug 283237: Move DBname_to_id out of globals.plmkanat%kerio.com2005-02-251-1/+1
| | | | Patch By Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap, a=myk
* Bug 280500: Replace "DATE_FORMAT()" with Bugzilla::DB function callmkanat%kerio.com2005-02-251-9/+10
| | | | Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
* Bug 281596: Remove RelationSet from Bugzilla::Bugmkanat%kerio.com2005-02-171-6/+8
| | | | Patch by Max Kanat-Alexander <mkanat@kerio.com> r=LpSolit, a=myk
* Bug 282331 : Old comments get wrapped even if already_wrapped=1travis%sedsystems.ca2005-02-171-1/+1
| | | | Patch by Jussi Sirpoma <jussi@comlink.fi> r=mkanat a=myk
* Bug 271276 : Cannot enter negative time for 'Hours Worked'travis%sedsystems.ca2005-02-171-4/+23
| | | | Patch by Shane H. W. Travis <travis@sedsystems.ca> r=LpSolit a=justdave
* Bug 276838 : Eliminate use of $::unconfirmedstatetravis%sedsystems.ca2005-02-091-2/+2
| | | | Patch by Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap a=justdave
* Bug 279544: Bug.pm: Eliminate deprecated Bugzilla::DB routinestravis%sedsystems.ca2005-02-051-34/+37
| | | | Patch by Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap a=justdave
* Bug 279740 : Move CountOpenDependencies out of globals.pltravis%sedsystems.ca2005-02-021-0/+26
| | | | Patch by Max Kanat-Alexander <mkanat@kerio.com> r=wurblzap a=justdave
* Bug 279700 : Move GetComments from globals.pl into Bugzilla::Bugtravis%sedsystems.ca2005-02-011-1/+33
| | | | Patch by Max Kanat-Alexander <mkanat@kerio.com> r=vladd a=justdave
* Bug 266579 : Users without privs can confirm bugs by assigning to themselves ↵travis%sedsystems.ca2005-01-211-14/+16
| | | | | | first, without having canconfirm privs Patch by LpSolit@gmail.com r=myk a=justdave
* Patch for bug 103636: Support specifying a date on which a bug is expected ↵jocuri%softhome.net2005-01-161-3/+3
| | | | to be resolved; patch by Alexandre Michetti Manduca <michetti@grad.icmc.usp.br>, r=jouni, a=myk.
* Bug 224208 Add a higher level of categorization (.ie departments, locations, ↵bugreport%peshkin.net2004-08-211-3/+7
| | | | | | | | etc.) patch by Albert Ting r=joel, glob a=myk
* More whitespace fixes. r=ssdbot. I've already talked to Alexandrekiko%async.com.br2004-08-061-3/+3
| | | | about this, won't happen again.
* Whitespace fixes. r=ssdbotkiko%async.com.br2004-08-051-2/+2
|
* Fix for bug 253562: Hours Worked (actual_time) is being listed as 1.kiko%async.com.br2004-08-051-5/+6
| | | | | | Cleans up Bugzilla::Bug::actual_time to do things the right way (dbi, Bugzilla->user) and apparently fixes a problem limited to some platforms. r=joel, a=justdave.
* Bug 186093: Move CanSeeBug to User.pm and make User.pm usable by templatesbugreport%peshkin.net2004-08-041-2/+2
| | | | | r=kiko a=justdave
* Patch for bug 253357: replace IFNULL with COALESCE for increased database ↵jocuri%softhome.net2004-07-311-1/+1
| | | | compatibility; patch by Tomas Kopal <Tomas.Kopal@altap.cz>; r=vladd, a=justdave.
* Bug 253588: Change Bugzilla->user to be usable even for a logged-out userbugreport%peshkin.net2004-07-311-3/+3
| | | | | | patch by erik,joel r=kiko a=justdave
* Fix for bug 236678: Clean up access to COOKIE global. Murder the lastkiko%async.com.br2004-07-291-26/+26
| | | | | remaining places in the tree where COOKIE is used; includes a rather thorough cleanup of Bugzilla::Bug->user and a minor doc update. r=joel, a=justdave.
* Using "abort" instead of 1 to make the unlock_tables request consistentkiko%async.com.br2004-07-231-1/+1
| | | | with the rest of Bugzilla.
* Fix for bug 252159: centralize time validation. Adds a ValidateTimekiko%async.com.br2004-07-231-0/+8
| | | | | function to Bugzilla::Bug and uses it in relevant callsites. Patch by Alexandre Michetti Manduca <michetti@grad.icmc.usp.br>. r=kiko, a=justdave.
* Bug 223878: Flag system dies when changing a deleted flag.jouni%heikniemi.net2004-07-061-4/+5
| | | | | r=joel, justdave a=justdave
* Patch for bug 248001: Conversion of boolean conditions in SQL statements for ↵jocuri%softhome.net2004-07-031-2/+2
| | | | better DB independence; patch by David Lawrence <dkl@redhat.com>; r=joel, vladd; a=justdave.
* Patch for bug 217627: fix Bugzilla internal error message that appears if ↵jocuri%softhome.net2004-05-201-1/+1
| | | | bug alias starts with zero; patch by Alexey Gladkov <legion@altlinux.org>; r=justdave; a=justdave.
* Bug 192516: Moving the loose .pm files into the Bugzilla directory, where ↵justdave%syndicomm.com2004-03-181-5/+7
| | | | | | | they belong. These files pre-date the Bugzilla directory, and would have gone there had it existed at the time. The four files in question were copied on the CVS server to preserve CVS history in the files. This checkin deletes them from the old location and modifies everything else to know where they are now. r= myk, gerv a= justdave
* Bug 217422: "0" was missing in "votes: 0" (MySQL 4 compatibility)justdave%syndicomm.com2003-09-021-1/+1
| | | | r= bbaetz, a= justdave
* Bug 180086 - Rename 'count' column in votes tablesbbaetz%acm.org2003-04-271-1/+1
| | | | | | patch by bugzilla@chimpychompy.org (GavinS) r=bbaetz,justdave a=justdave
* Bug 71790 - Duplicate resolution field should include bug number of originalburnus%gmx.de2003-04-091-0/+18
| | | | r=bbaetz,a=justdave
* Bug 194394 - Internal error after turning useqacontact offbbaetz%acm.org2003-02-231-2/+8
| | | | r,a=justdave
* Bug 186994 - Unable to accept a new bug that has been assigned. Patch by ↵gerv%gerv.net2003-02-161-3/+5
| | | | gerv; r=bbaetz, a=justdave.
* Bug 106918: the "movers" param was not being interpreted correctly by ↵justdave%syndicomm.com2003-01-241-0/+2
| | | | | | move.pl or the show_bug template. Also the exporter value was not properly fed into the xml template. r= myk, a= justdave
* Bug 188161 - assignee/qa missing change knobs.bbaetz%acm.org2003-01-231-3/+3
| | | | r, a=justdave
* Bug 158499 - Templatise XML bug outputbbaetz%student.usyd.edu.au2002-12-151-124/+34
| | | | | r=gerv, justdave a=justdave
* Bug 182946 - fix additional typo noticed on irc by tmbbaetz%student.usyd.edu.au2002-12-031-1/+1
|
* Bug 182946 - fix regressions from bug 171493bbaetz%student.usyd.edu.au2002-12-031-5/+5
| | | | | (Bug.pm/show_bug.cgi/bug_form.pl reorg) r,a=justdave
* Bug 171493 - make show_bug use Bug.pm and remove bug_form.plbbaetz%student.usyd.edu.au2002-11-281-213/+289
| | | | | r=justdave, joel a=justdave
* Bug 124589 - support database replicationbbaetz%student.usyd.edu.au2002-11-191-8/+0
| | | | r=myk, a=justdave
* bug 157756 - Groups_20020716_Branch Tracking : > 55 groups now supportedbugreport%peshkin.net2002-09-231-32/+9
| | | | r=bbaetz, gerv
* Bug 165756 - Running tests without checksetup causes failurebbaetz%student.usyd.edu.au2002-09-051-2/+1
| | | | r=joel, jake
* Bug 163829 - move pref code into a separate packagebbaetz%student.usyd.edu.au2002-08-291-5/+6
| | | | r=joel, preed
* Bug 164623 - xml.cgi - attachments is broken and insiders not enforcedbugreport%peshkin.net2002-08-271-54/+59
| | | | 2xr=bbaetz
* Bug 76923 - Don't |use diagnostics| (its really expensive at startup time)bbaetz%student.usyd.edu.au2002-08-261-1/+0
| | | | r=joel x2
* Big 163291 - Move utility funcs into a modulebbaetz%student.usyd.edu.au2002-08-191-2/+4
| | | | r=preed x2
* Bug 43600 - Convert products/components to use ids instead of names.bbaetz%student.usyd.edu.au2002-08-121-3/+6
| | | | | Initial attempt by jake@bugzilla.org, updated by me r=joel, preed