mirror of
https://github.com/mrclay/minify.git
synced 2025-08-17 19:37:22 +02:00
All PHP/doc files have Unix newlines w/ no BOM
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Class Minify_CSS
|
* Class Minify_CSS
|
||||||
* @package Minify
|
* @package Minify
|
||||||
|
@@ -26,5 +26,3 @@ function assertTrue($test, $message)
|
|||||||
|
|
||||||
return (bool)$test;
|
return (bool)$test;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
|
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
if (isset($_FILES['subject']['name'])
|
if (isset($_FILES['subject']['name'])
|
||||||
&& preg_match('/\\.(js|css|html)$/', $_FILES['subject']['name'], $m)
|
&& preg_match('/\\.(js|css|x?html?)$/', $_FILES['subject']['name'], $m)
|
||||||
) {
|
) {
|
||||||
ini_set('include_path',
|
ini_set('include_path',
|
||||||
dirname(__FILE__) . '/../../min/lib'
|
dirname(__FILE__) . '/../../min/lib'
|
||||||
@@ -21,7 +21,9 @@ if (isset($_FILES['subject']['name'])
|
|||||||
case 'css':
|
case 'css':
|
||||||
$type = 'CSS';
|
$type = 'CSS';
|
||||||
break;
|
break;
|
||||||
case 'html':
|
case 'html': // fallthrough
|
||||||
|
case 'htm': // fallthrough
|
||||||
|
case 'xhtml':
|
||||||
$type = 'HTML';
|
$type = 'HTML';
|
||||||
$arg2 = array(
|
$arg2 = array(
|
||||||
'cssMinifier' => array('Minify_CSS', 'minify')
|
'cssMinifier' => array('Minify_CSS', 'minify')
|
||||||
@@ -38,6 +40,7 @@ if (isset($_FILES['subject']['name'])
|
|||||||
. preg_replace('/\\.(\w+)$/', '.min.$1', $_FILES['subject']['name'])
|
. preg_replace('/\\.(\w+)$/', '.min.$1', $_FILES['subject']['name'])
|
||||||
. '"');
|
. '"');
|
||||||
|
|
||||||
|
//@unlink($_FILES['subject']['tmp_name']);
|
||||||
echo $out;
|
echo $out;
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user