Bugzilla

From In The Wings
Revision as of 11:48, 18 January 2017 by Jka (talk | contribs) (Created page with "==Database Manipulation== ===Mark a bug closed=== To mark a bug closed without having any notices go out, perform the following action in the database: <pre> UPDATE bugs SET b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Database Manipulation

Mark a bug closed

To mark a bug closed without having any notices go out, perform the following action in the database:

UPDATE bugs SET bug_status = 'CLOSED' WHERE bug_id = #####;

This will set the bug status to closed without sending any emails or other notifications out to those who have references to the bug.