﻿// Script# overwrites the String.replace() method with a different implementation
// that replaces all occurences of the text to search for instead of just the 
// first occurrence. This behavior breaks the Ext DomQuery class. Luckily Script#
//  stores a backup of the original method, so I'll just revert the change back
//  - sscorlib.debug.js, line #564
String.prototype.replace = String.prototype._replace;
