1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-20 21:02:30 +02:00

rewrite-uri CLI tool

This commit is contained in:
Steve Clay
2012-02-25 01:19:36 -05:00
parent 67bbc4b94e
commit 4f490d0f48
4 changed files with 541 additions and 1 deletions

View File

@@ -11,6 +11,6 @@ $minifyCachePath = isset($min_cachePath)
: '';
function min_autoload($name) {
require str_replace('_', DIRECTORY_SEPARATOR, $name) . '.php';
require str_replace(array('_', '\\'), DIRECTORY_SEPARATOR, $name) . '.php';
}
spl_autoload_register('min_autoload');