aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/install_header.html
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/adm/style/install_header.html')
-rw-r--r--phpBB/adm/style/install_header.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/phpBB/adm/style/install_header.html b/phpBB/adm/style/install_header.html
index 4980fd36fb..a8f7009e4b 100644
--- a/phpBB/adm/style/install_header.html
+++ b/phpBB/adm/style/install_header.html
@@ -7,34 +7,6 @@
<title>{PAGE_TITLE}</title>
<link href="{T_TEMPLATE_PATH}/admin.css" rel="stylesheet" type="text/css" media="screen" />
-
-<script type="text/javascript">
-// <![CDATA[
-
-/**
-* Set display of page element
-*
-* @param string id The ID of the element to change
-* @param int action Set to 0 if element display should be toggled, -1 for
-* hiding the element, and 1 for showing it.
-* @param string type Display type that should be used, e.g. inline, block or
-* other CSS "display" types
-*/
-function dE(id, action, type) {
- if (!type) {
- type = 'block';
- }
-
- var display = jQuery('#' + id).css('display');
- if (!action) {
- action = (display === '' || display === type) ? -1 : 1;
- }
- jQuery('#' + id).css('display', ((action === 1) ? type : 'none'));
-}
-
-// ]]>
-</script>
-
</head>
<body class="{S_CONTENT_DIRECTION} nojs">