https://bugzilla.wikimedia.org/show_bug.cgi?id=69623
--- Comment #7 from Chris Steipp <[email protected]> --- (In reply to Yuri Astrakhan from comment #6) > Chris, thanks, and the defaults have always been exactly as you describe - > extension sets wgEnableGraphParserTag=false and wgGraphDataDomains=[] by > default. Sorry, what I meant was in js/graph.js, you have if (vg.config.domainWhiteList) { vg.config.safeMode = true; } I'm not sure any js engines interpret [] == false, but something like this would feel safer to me (more fail safe): vg.config.safeMode = true; if ( vg.config.domainWhiteList === false ) { vg.config.safeMode = false; } -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
