diff options
| author | Zeev Suraski <zeev@php.net> | 2001-08-08 14:01:22 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-08-08 14:01:22 +0000 |
| commit | 6ecae422c4dac0c8c14b6a18fd426c31794f0460 (patch) | |
| tree | 3896498aa30af4336412e4b3c8e82503b49a3431 /sapi/apache/mod_php4.c | |
| parent | 815d043b1ee2d71647ce50da6176b8cf13edee46 (diff) | |
| download | php-git-6ecae422c4dac0c8c14b6a18fd426c31794f0460.tar.gz | |
Use zend_first_try
Diffstat (limited to 'sapi/apache/mod_php4.c')
| -rw-r--r-- | sapi/apache/mod_php4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 1321c5cb1b..1bcf3bccf4 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -502,7 +502,7 @@ static int send_php(request_rec *r, int display_source_mode, char *filename) return OK; } - zend_try { + zend_first_try { /* We don't accept OPTIONS requests, but take everything else */ if (r->method_number == M_OPTIONS) { r->allowed |= (1 << METHODS) - 1; |
