diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
commit | 02d3b39420839c9e09fd7c391f158e5c510bd600 (patch) | |
tree | 0dbd660f36a226fc545e719cb226114bb60f6c7c /ext/dbase | |
parent | 9ebd037226fcaa1804df73c419d5529a16957e0b (diff) | |
download | php-git-02d3b39420839c9e09fd7c391f158e5c510bd600.tar.gz |
More php3_ annihilation
Diffstat (limited to 'ext/dbase')
-rw-r--r-- | ext/dbase/dbase.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/dbase/dbase.c b/ext/dbase/dbase.c index 475e20a3b8..f8cb7b91c8 100644 --- a/ext/dbase/dbase.c +++ b/ext/dbase/dbase.c @@ -123,11 +123,11 @@ PHP_FUNCTION(dbase_open) { convert_to_string(dbf_name); convert_to_long(options); - if (PG(safe_mode) && (!_php3_checkuid(dbf_name->value.str.val, 2))) { + if (PG(safe_mode) && (!php_checkuid(dbf_name->value.str.val, 2))) { RETURN_FALSE; } - if (_php3_check_open_basedir(dbf_name->value.str.val)) { + if (php_check_open_basedir(dbf_name->value.str.val)) { RETURN_FALSE; } @@ -585,11 +585,11 @@ PHP_FUNCTION(dbase_create) { RETURN_FALSE; } - if (PG(safe_mode) && (!_php3_checkuid(filename->value.str.val, 2))) { + if (PG(safe_mode) && (!php_checkuid(filename->value.str.val, 2))) { RETURN_FALSE; } - if (_php3_check_open_basedir(filename->value.str.val)) { + if (php_check_open_basedir(filename->value.str.val)) { RETURN_FALSE; } |