Delete types
This commit is contained in:
@ -1,22 +1,22 @@
|
||||
<?php
|
||||
NAMESPACE kcfinder;
|
||||
?>
|
||||
<script src="js/index.php" type="text/javascript"></script>
|
||||
<script src="js_localize.php?lng=<?php echo $this->lang ?>" type="text/javascript"></script>
|
||||
<script src="js/index.php"></script>
|
||||
<script src="js_localize.php?lng=<?php echo $this->lang ?>"></script>
|
||||
<?php
|
||||
IF ($this->opener['name'] == "tinymce"):
|
||||
?>
|
||||
<script src="<?php echo $this->config['_tinyMCEPath'] ?>/tiny_mce_popup.js" type="text/javascript"></script>
|
||||
<script src="<?php echo $this->config['_tinyMCEPath'] ?>/tiny_mce_popup.js"></script>
|
||||
<?php
|
||||
ENDIF;
|
||||
|
||||
IF (file_exists("themes/{$this->config['theme']}/js.php")):
|
||||
?>
|
||||
<script src="themes/<?php echo $this->config['theme'] ?>/js.php" type="text/javascript"></script>
|
||||
<script src="themes/<?php echo $this->config['theme'] ?>/js.php"></script>
|
||||
<?php
|
||||
ENDIF;
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
_.version = "<?php echo self::VERSION ?>";
|
||||
_.support.zip = <?php echo (class_exists('ZipArchive') && !$this->config['denyZipDownload']) ? "true" : "false" ?>;
|
||||
_.support.check4Update = <?php echo ((!isset($this->config['denyUpdateCheck']) || !$this->config['denyUpdateCheck']) && (ini_get("allow_url_fopen") || function_exists("http_get") || function_exists("curl_init") || function_exists('socket_create'))) ? "true" : "false" ?>;
|
||||
|
||||
Reference in New Issue
Block a user