From 1382277c74cd661a8ed262d877c7811c29774aff Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Mon, 28 May 2012 19:10:29 +0100 Subject: [PATCH] Default list of excluded files increased Now by default the excluded files includes anything in the _coder folder, plus filetypes that shouldn't really be searched within (mainly media files). --- lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.php b/lib/config.php index 0e63b95..21ecfa3 100644 --- a/lib/config.php +++ b/lib/config.php @@ -5,7 +5,7 @@ $cMThisVer = 2.25; $tabsIndent = true; $testcMVersion = false; $openLastFiles = true; -$findFilesExclude = array("_coder"); +$findFilesExclude = array("_coder",".doc",".gif",".jpg",".jpeg",".pdf",".png",".swf",".xml",".zip"); $codeAssist = true; $visibleTabs = false; $lockedNav = true;