# HG changeset patch # User Nathan Phillip Brink # Date 2011-02-05 21:30:37 # Node ID 4226832334b0d3edb5cb1edd03ebd7a78ac49bb6 # Parent 3f6590312102b5ce15bdf11c0d4cde9a40304ef7 Remove accidentally added error_log() calls. diff --git a/process.php b/process.php --- a/process.php +++ b/process.php @@ -139,10 +139,9 @@ if(!$DEBUG) foreach($class as $section) /* Skip the section name, which isn't a section */ if(is_array($section)) - {error_log(print_r($section['days'], TRUE)); - $allClasses->addSection($class['name'], $section['letter'], $section['start'], $section['end'], arrayToDays($section['days'], 'alpha'), $section['synonym'], $section['professor'], $section['location'], $section['type']); - error_log(arrayToDays($section['days'], 'alpha')); - } + { + $allClasses->addSection($class['name'], $section['letter'], $section['start'], $section['end'], arrayToDays($section['days'], 'alpha'), $section['synonym'], $section['professor'], $section['location'], $section['type']); + } } } $allClasses->findPossibilities();