From 6ca0fbc6a306640800e1ada8de48342abc360172 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Sat, 12 Feb 2011 21:01:07 +0000 Subject: Doh, how did this get here? git-svn-id: http://code.elgg.org/elgg/trunk@8172 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/minify/lib/min/config.php | 155 ------------------------------------------ 1 file changed, 155 deletions(-) delete mode 100644 mod/minify/lib/min/config.php (limited to 'mod/minify/lib/min/config.php') diff --git a/mod/minify/lib/min/config.php b/mod/minify/lib/min/config.php deleted file mode 100644 index 00605f856..000000000 --- a/mod/minify/lib/min/config.php +++ /dev/null @@ -1,155 +0,0 @@ - - * array('//symlink' => '/real/target/path') // unix - * array('//static' => 'D:\\staticStorage') // Windows - * - */ -$min_symlinks = array(); - - -/** - * If you upload files from Windows to a non-Windows server, Windows may report - * incorrect mtimes for the files. This may cause Minify to keep serving stale - * cache files when source file changes are made too frequently (e.g. more than - * once an hour). - * - * Immediately after modifying and uploading a file, use the touch command to - * update the mtime on the server. If the mtime jumps ahead by a number of hours, - * set this variable to that number. If the mtime moves back, this should not be - * needed. - * - * In the Windows SFTP client WinSCP, there's an option that may fix this - * issue without changing the variable below. Under login > environment, - * select the option "Adjust remote timestamp with DST". - * @link http://winscp.net/eng/docs/ui_login_environment#daylight_saving_time - */ -$min_uploaderHoursBehind = 0; - - -/** - * Path to Minify's lib folder. If you happen to move it, change - * this accordingly. - */ -$min_libPath = dirname(__FILE__) . '/lib'; - - -// try to disable output_compression (may not have an effect) -ini_set('zlib.output_compression', '0'); -- cgit v1.2.3