Al Arzaga wrote:
How do I get rid of a priority with a blank name?  Using the webadmin,
someone renamed it with a blank name.  Now, we're having problems
deleting it.

This sounds like a bug in web admin as one shouldn't be able to rename to a blank name. Is there a ticket in for this already?

You will have to use the SQLite3 admin tool and directly remove it from the DB.

c:\sqlite3 path\to\db\file

sqlite> update enum set name="mynewpriorityname" where type="priority" and name="";

sqlite> select * from enum where type="priority";

sqlite> .exit

That should do it for a windows environment.  *nix will be similar.

Regards,
Felix
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac

Reply via email to