// ==UserScript==
// @name Fix Disney Channel Flash detection
// @author Lee Harvey
// @namespace http://my.opera.com/Lee_Harvey/
// @version 1.0
// @description  Fixes the Flash detection script hosted on Disney Channel
// ==/UserScript==

/*
 * This script is granted to the Public Domain.
 */

if (document.domain.match(/\.disney\.go\.com$/)) {
	window.opera.defineMagicFunction("DetectFlash",
		function(RealFunc, oThis, nversion, redirect, override) {
			return 1;
		});
}
