Since we no longer ask to add these lines

    <Files *.php>
      SetOutputFilter PHP
      SetInputFilter PHP
    </Files>

  to the httpd.conf in the apache2filter README, isn't it save to
  remove the following lines from sapi_apache2.c?

    /* for those who still have Set*Filter PHP configured */
    while (f) {
      if (strcmp(f->frec->name, "PHP") == 0) {
        ap_log_error(APLOG_MARK, APLOG_WARNING | APLOG_NOERRNO,
               0, r->server,
               "\"Set%sFilter PHP\" already configured for %s",
               output ? "Output" : "Input", r->uri);
        return;
      }
      f = f->next;
    }

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to