Skip to content

Commit 56008df

Browse files
committed
. will be ignored, now -
1 parent 6cac8a2 commit 56008df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Classes/Header.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Header {
1717
'<link href="%root%/CSS/SubMenuStyle.css.php" type="text/css" rel="stylesheet" />',
1818
'<link href="%root%/CSS/SubMenuStyleMobiel.css.php" type="text/css" rel="stylesheet" />',
1919
'<script src="https://apis.google.com/js/platform.js" async defer></script>',
20-
'<script src="%root%/JavaScript/.min.php"></script>',
20+
'<script src="%root%/JavaScript/-min.php"></script>',
2121
);
2222

2323
public static function getMetaTags() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
$j = new JSqueeze();
33
foreach(scandir('.') as $file) {
4-
if($file[0] != '.' && !is_dir($file) && $file != __FILE__) {
4+
if($file[0] != '.' && !is_dir($file) && $file[0] != '-') {
55
echo $j->squeeze(file_get_contents($file), true, false) . PHP_EOL;
66
}
77
}

0 commit comments

Comments
 (0)