Development

Changeset 2982

You must first sign up to be able to contribute.

Changeset 2982

Show
Ignore:
Timestamp:
12/08/06 23:03:18 (2 years ago)
Author:
fabien
Message:

added -q to the php cli

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/util/sfCore.class.php

    r2875 r2982  
    182182      ini_set('unserialize_callback_func', 'spl_autoload_call'); 
    183183    } 
    184     elseif (!function_exists('__autoload')) 
     184    else if (!function_exists('__autoload')) 
    185185    { 
    186186      ini_set('unserialize_callback_func', '__autoload'); 
  • trunk/test/other/tasksTest.php

    r2405 r2982  
    6161  { 
    6262    ob_start(); 
    63     passthru(sprintf('%s "%s" %s 2>&1', $this->php_cli, dirname(__FILE__).'/../../data/bin/symfony', $cmd), $return); 
     63    passthru(sprintf('%s -q "%s" %s 2>&1', $this->php_cli, dirname(__FILE__).'/../../data/bin/symfony', $cmd), $return); 
    6464    $content = ob_get_clean(); 
    6565    $this->t->cmp_ok($return, '<=', 0, sprintf('"symfony %s" returns ok', $cmd));