Browse Source

Ws fix. Forgot to add this in the previous commit.

migration/unlabaled-1.1.2
Andrey Hristov 24 years ago
parent
commit
b2d93b67fc
  1. 5
      ext/standard/string.c

5
ext/standard/string.c

@ -450,10 +450,9 @@ PHP_FUNCTION(nl_langinfo)
convert_to_long_ex(item);
value = nl_langinfo(Z_LVAL_PP(item));
if (value == NULL) {
if (value == NULL) {
RETURN_FALSE;
}
else {
} else {
RETURN_STRING(value, 1);
}
}

Loading…
Cancel
Save