diff --git a/plugins/no_url_hashes/init.js b/plugins/no_url_hashes/init.js deleted file mode 100644 index fc459672480140010ecfafbd616fa61ea5be136f..0000000000000000000000000000000000000000 --- a/plugins/no_url_hashes/init.js +++ /dev/null @@ -1,9 +0,0 @@ -require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) { - ready(function () { - hash_set = function () { - }; - hash_get = function () { - }; - }); -}); - diff --git a/plugins/no_url_hashes/init.php b/plugins/no_url_hashes/init.php deleted file mode 100644 index 57d4c9927359ff037db89fb7dcf6bdf0837f2719..0000000000000000000000000000000000000000 --- a/plugins/no_url_hashes/init.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -class No_URL_Hashes extends Plugin { - private $host; - - function about() { - return array(null, - "Disable URL hash usage (e.g. #f=10, etc)", - "fox"); - } - - function init($host) { - $this->host = $host; - - } - - function get_js() { - return file_get_contents(__DIR__ . "/init.js"); - } - - function api_version() { - return 2; - } - -} \ No newline at end of file