Index: ext/phar/func_interceptors.c =================================================================== RCS file: /repository/php-src/ext/phar/func_interceptors.c,v retrieving revision 1.20.2.9 diff -u -p -r1.20.2.9 func_interceptors.c --- ext/phar/func_interceptors.c 10 Jul 2008 16:16:15 -0000 1.20.2.9 +++ ext/phar/func_interceptors.c 11 Jul 2008 08:52:13 -0000 @@ -883,13 +883,13 @@ PharFileFunction(phar_is_readable, FS_IS PharFileFunction(phar_is_executable, FS_IS_X, orig_is_executable) /* }}} */ -/* {{{ proto bool is_executable(string filename) - Returns true if file is executable */ +/* {{{ proto bool file_exists(string filename) + Returns true if filename exists */ PharFileFunction(phar_file_exists, FS_EXISTS, orig_file_exists) /* }}} */ -/* {{{ proto bool is_executable(string filename) - Returns true if file is executable */ +/* {{{ proto bool is_dir(string filename) + Returns true if file is directory */ PharFileFunction(phar_is_dir, FS_IS_DIR, orig_is_dir) /* }}} */ @@ -1018,7 +1018,7 @@ found_it: } } skip_phar: - PHAR_G(orig_file_exists)(INTERNAL_FUNCTION_PARAM_PASSTHRU); + PHAR_G(orig_is_link)(INTERNAL_FUNCTION_PARAM_PASSTHRU); return; } /* }}} */