Modify ↓
Opened 14 years ago
Closed 14 years ago
#7654 closed defect (fixed)
BatchMod under Trac 0.11.7 missing "quote" variable
Reported by: | Owned by: | CuriousCurmudgeon | |
---|---|---|---|
Priority: | normal | Component: | BatchModifyPlugin |
Severity: | major | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
BatchMod seems to work for almost every field you'd want to modify except milestone
:
This is because quote
doesn't exist in 0.11.7.
To move past this quickly, we changed it to:
jQuery(document).ready(function($){ //NOTE: Backported from trac.js in Trac 0.12 $.htmlEscape = function(value) { if (typeof value != "string") return value; return $('<div/>').text(value).html(); } // ... });
Without this, you basically can't move bunches of tickets to other milestones. This is really the main reason I use the lib in the first place.
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by
Summary: | BatchMod under Trac 0.11.7 missing "quote" function → BatchMod under Trac 0.11.7 missing "quote" variable |
---|
comment:2 Changed 14 years ago by
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
(In [8816]) refs #7654