diff options
author | Andi Gutmans <andi@php.net> | 2000-08-20 18:12:16 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-08-20 18:12:16 +0000 |
commit | 80d878279b2cfe898e4738cef5049910aee9fb72 (patch) | |
tree | 70c647fa35089b41c6151a2c11a7d7435165bcae /main/php_virtual_cwd.c | |
parent | 45e9e3a9feb7ae6321ce932916897aacd790709b (diff) | |
download | php-git-80d878279b2cfe898e4738cef5049910aee9fb72.tar.gz |
- Sascha's patch should make PHP in VIRTUAL_DIR mode also change to the
- right directory so this shouldn't be needed anymore.
Diffstat (limited to 'main/php_virtual_cwd.c')
-rw-r--r-- | main/php_virtual_cwd.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/main/php_virtual_cwd.c b/main/php_virtual_cwd.c index cf4a99bccc..84f90c1538 100644 --- a/main/php_virtual_cwd.c +++ b/main/php_virtual_cwd.c @@ -182,16 +182,6 @@ CWD_API void virtual_cwd_startup(void) #endif } -CWD_API void virtual_cwd_activate(const char *filename) -{ -#if VIRTUAL_CWD_DEBUG - fprintf(stderr, "Changing dir to %s\n", filename); -#endif - if (filename) { - virtual_chdir_file(filename); - } -} - CWD_API void virtual_cwd_shutdown(void) { #ifndef ZTS |