Skip to content

Commit

Permalink
. will be ignored, now -
Browse files Browse the repository at this point in the history
  • Loading branch information
MakerTim committed Jun 10, 2015
1 parent 6cac8a2 commit 56008df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Header {
'<link href="%root%/CSS/SubMenuStyle.css.php" type="text/css" rel="stylesheet" />',
'<link href="%root%/CSS/SubMenuStyleMobiel.css.php" type="text/css" rel="stylesheet" />',
'<script src="https://apis.google.com/js/platform.js" async defer></script>',
'<script src="%root%/JavaScript/.min.php"></script>',
'<script src="%root%/JavaScript/-min.php"></script>',
);

public static function getMetaTags() {
Expand Down
2 changes: 1 addition & 1 deletion JavaScript/.min.php → JavaScript/-min.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
$j = new JSqueeze();
foreach(scandir('.') as $file) {
if($file[0] != '.' && !is_dir($file) && $file != __FILE__) {
if($file[0] != '.' && !is_dir($file) && $file[0] != '-') {
echo $j->squeeze(file_get_contents($file), true, false) . PHP_EOL;
}
}
Expand Down

0 comments on commit 56008df

Please sign in to comment.