- updated configuration file.

- edited init script so it will only look for specific file names. "index.html", "index.php", so on, instead of running glob() on "index.*".

- moved internal timer to seperate exec file.

git-svn-id: file:///Users/jimeh/Desktop/dlist/trunk@7 a5845835-ea0f-0410-a762-dd0bfe9bfde8
This commit is contained in:
jim
2006-03-30 23:43:05 +00:00
parent 87b72b6fb0
commit 49ccc270a1
9 changed files with 75 additions and 23 deletions

View File

@@ -251,7 +251,11 @@ class execHandler {
if ( preg_match("/(.*)".$this->priority_delim."(.*)/", $section, $priority) ) {
$section = $priority[1];
$priority = $priority[2];
} else { $priority = $this->default_priority; }
} elseif ( !empty($settings['priority']) ) {
$priority = $settings['priority'];
}else {
$priority = $this->default_priority;
}
$section_code = $this->clean_up_code($section_code[2]);