Browse Source

NetWare allows directory seperator as \ and /

PHP-5.1
Anantha Kesari H Y 22 years ago
parent
commit
033a45903c
  1. 2
      ext/standard/string.c

2
ext/standard/string.c

@ -1142,7 +1142,7 @@ PHPAPI void php_basename(char *s, size_t len, char *suffix, size_t sufflen, char
case 0:
goto quit_loop;
case 1:
#ifdef PHP_WIN32
#if defined(PHP_WIN32) || defined(NETWARE)
if (*c == '/' || *c == '\\') {
#else
if (*c == '/') {

Loading…
Cancel
Save