Show
Ignore:
Timestamp:
04/12/08 18:35:23 (3 months ago)
Author:
mikey
Message:

stop further processing if request already canceled

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/websites/stubFrontController.php

    r1531 r1533  
    116116    public function process() 
    117117    { 
     118        if ($this->request->isCancelled() === true) { 
     119            $this->response->send(); 
     120            return; 
     121        } 
     122         
    118123        $processorResolverFactory = $this->websiteInitializer->getProcessorResolverFactory(); 
    119124        $processorResolverFactory->init();