Changeset 11375
- Timestamp:
- 09/08/08 18:53:09 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/task/cache/sfCacheClearTask.class.php
r11280 r11375 4 4 * This file is part of the symfony package. 5 5 * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> 6 * 6 * 7 7 * For the full copyright and license information, please view the LICENSE 8 8 * file that was distributed with this source code. … … 86 86 $this->checkAppExists($app); 87 87 88 $appConfiguration = ProjectConfiguration::getApplicationConfiguration($app, 'cli', true);89 90 88 if (!is_dir(sfConfig::get('sf_cache_dir').'/'.$app)) 91 89 { … … 106 104 $this->lock($app, $env); 107 105 106 $appConfiguration = ProjectConfiguration::getApplicationConfiguration($app, $env, true); 108 107 $event = $appConfiguration->getEventDispatcher()->notifyUntil(new sfEvent($this, 'task.cache.clear', array('app' => $appConfiguration, 'env' => $env, 'type' => $options['type']))); 109 108 if (!$event->isProcessed())