summaryrefslogtreecommitdiffstats
path: root/application/helpers/filebin_helper.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/helpers/filebin_helper.php')
-rw-r--r--application/helpers/filebin_helper.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/application/helpers/filebin_helper.php b/application/helpers/filebin_helper.php
index 7fd25d5f4..2ac061e79 100644
--- a/application/helpers/filebin_helper.php
+++ b/application/helpers/filebin_helper.php
@@ -135,30 +135,6 @@ function link_with_mtime($file)
return $link;
}
-function include_js($file)
-{
- static $included = array();
- if (in_array($file, $included) || $file === null) {
- return "";
- }
- return "<script src=\"".link_with_mtime($file)."\"></script>\n";
-}
-
-// kind of hacky, but works well enough for now
-function register_js_include($file, $return = false)
-{
- static $list = "";
- $list .= include_js($file);
- if ($return) {
- return $list;
- }
-}
-
-function include_registered_js()
-{
- return register_js_include(null, true);
-}
-
function handle_etag($etag)
{
$etag = strtolower($etag);