This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.location.href = (function() { | |
| var browser = (function() { | |
| var ua = navigator.userAgent, | |
| tem, | |
| M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || []; | |
| if (/trident/i.test(M[1])) { | |
| tem = /\brv[ :]+(\d+)/g.exec(ua) || []; | |
| return { | |
| name: 'IE', | |
| version: (tem[1] || '') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Import SQL files from a directory | |
| * | |
| * @author joshcangit, https://github.com/joshcangit | |
| * @author Roy-Orbison, https://github.com/Roy-Orbison | |
| */ | |
| class AdminerImportFromDir { |