Development

Changeset 1847

You must first sign up to be able to contribute.

Changeset 1847

Show
Ignore:
Timestamp:
08/25/06 15:24:31 (2 years ago)
Author:
fabien
Message:

fixed a warning when launching a batch

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/request/sfWebRequest.class.php

    r1813 r1847  
    395395 
    396396    // for IIS 
    397     if (false !== stripos($_SERVER['SERVER_SOFTWARE'], 'iis') && $pos = stripos($pathInfo, '.php')) 
     397    if (isset($_SERVER['SERVER_SOFTWARE']) && false !== stripos($_SERVER['SERVER_SOFTWARE'], 'iis') && $pos = stripos($pathInfo, '.php')) 
    398398    { 
    399399      $pathInfo = substr($pathInfo, $pos + 4);