diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-27 12:49:50 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-17 19:20:36 -0800 |
commit | 1272c9272e37c3418e2e70a3eb3fdfc6462eb353 (patch) | |
tree | 27d96297d4aef3ab0b7a62756de56dc50229a3a3 | |
parent | 508b43c19733d15fcacc2226e91b1ec26a20a562 (diff) | |
download | forums-1272c9272e37c3418e2e70a3eb3fdfc6462eb353.tar forums-1272c9272e37c3418e2e70a3eb3fdfc6462eb353.tar.gz forums-1272c9272e37c3418e2e70a3eb3fdfc6462eb353.tar.bz2 forums-1272c9272e37c3418e2e70a3eb3fdfc6462eb353.tar.xz forums-1272c9272e37c3418e2e70a3eb3fdfc6462eb353.zip |
[ticket/11915] Remove unnecessary JS file and include others using INCLUDEJS.
PHPBB3-11915
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/plupload.html | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index f7d0269edb..662008b7fa 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -60,8 +60,8 @@ <!-- EVENT overall_footer_after --> -{$SCRIPTS} <!-- IF S_PLUPLOAD --><!-- INCLUDE plupload.html --><!-- ENDIF --> +{$SCRIPTS} </body> </html> diff --git a/phpBB/styles/prosilver/template/plupload.html b/phpBB/styles/prosilver/template/plupload.html index c689ef8427..ab788fb596 100644 --- a/phpBB/styles/prosilver/template/plupload.html +++ b/phpBB/styles/prosilver/template/plupload.html @@ -1,5 +1,3 @@ -<script type="text/javascript" src="{T_ASSETS_PATH}/plupload/plupload.full.min.js?assets_version={T_ASSETS_VERSION}"></script> -<script type="text/javascript" src="{T_ASSETS_PATH}/plupload/jquery.plupload.queue/jquery.plupload.queue.min.js?assets_version={T_ASSETS_VERSION}"></script> <script type="text/javascript"> //<![CDATA[ phpbb.plupload = { @@ -69,4 +67,5 @@ phpbb.plupload = { } //]]> </script> -<script type="text/javascript" src="{T_ASSETS_PATH}/javascript/plupload.js"></script> +<!-- INCLUDEJS {T_ASSETS_PATH}/plupload/plupload.full.min.js --> +<!-- INCLUDEJS {T_ASSETS_PATH}/javascript/plupload.js --> |