Development

Changeset 7428

You must first sign up to be able to contribute.

Changeset 7428

Show
Ignore:
Timestamp:
02/09/08 09:16:26 (8 months ago)
Author:
fabien
Message:

remove generator:controller task

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/command/sfCommandApplication.class.php

    r7318 r7428  
    474474  protected function fixCgi() 
    475475  { 
    476     if (false === strpos(PHP_SAPI, 'cgi')) 
    477     { 
    478       return; 
    479     } 
    480  
    481476    // handle output buffering 
    482477    @ob_end_flush(); 
     
    489484    ini_set('magic_quotes_runtime', false); 
    490485 
     486    if (false === strpos(PHP_SAPI, 'cgi')) 
     487    { 
     488      return; 
     489    } 
     490 
    491491    // define stream constants 
    492492    define('STDIN',  fopen('php://stdin',  'r'));