diff options
| author | Zeev Suraski <zeev@php.net> | 2001-07-31 07:09:49 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-07-31 07:09:49 +0000 |
| commit | b1de7fc900766b229f17bf9e1020b5a67b5b0964 (patch) | |
| tree | c405a417de3fdafcd98ad8db882b770e96e70d90 /ext/filepro | |
| parent | bc42c37513a730b0b3ff9cf29e14e45e4ec50c71 (diff) | |
| download | php-git-b1de7fc900766b229f17bf9e1020b5a67b5b0964.tar.gz | |
More TSRMLS_FETCH annihilation. Enough for today...
Diffstat (limited to 'ext/filepro')
| -rw-r--r-- | ext/filepro/filepro.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/filepro/filepro.c b/ext/filepro/filepro.c index a997934bda..ed56136882 100644 --- a/ext/filepro/filepro.c +++ b/ext/filepro/filepro.c @@ -218,7 +218,7 @@ PHP_FUNCTION(filepro) RETURN_FALSE; } - if (php_check_open_basedir(workbuf)) { + if (php_check_open_basedir(workbuf TSRMLS_CC)) { RETURN_FALSE; } @@ -316,7 +316,7 @@ PHP_FUNCTION(filepro_rowcount) RETURN_FALSE; } - if (php_check_open_basedir(workbuf)) { + if (php_check_open_basedir(workbuf TSRMLS_CC)) { RETURN_FALSE; } @@ -540,7 +540,7 @@ PHP_FUNCTION(filepro_retrieve) RETURN_FALSE; } - if (php_check_open_basedir(workbuf)) { + if (php_check_open_basedir(workbuf TSRMLS_CC)) { RETURN_FALSE; } |
