summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-07-17 13:37:26 +0000
committerAndrei Zmievski <andrei@php.net>2000-07-17 13:37:26 +0000
commit8f96ea6b20f58e79583629e8bd5cb27e26dccb7a (patch)
tree568aabceed056c8688426e9c28ffd0499748505f
parent7b9d2e33bf6acbc90658d4f97ad9297d33f35208 (diff)
downloadphp-git-8f96ea6b20f58e79583629e8bd5cb27e26dccb7a.tar.gz
*** empty log message ***
-rw-r--r--NEWS2
-rw-r--r--ext/standard/array.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 76c6e644bd..25cc030438 100644
--- a/NEWS
+++ b/NEWS
@@ -18,7 +18,7 @@ PHP 4.0 NEWS
parameter was specified.
- Use dashes and short day name in cookies since some browsers seem picky
about this (Rasmus)
-- Making pspell compile as a shared module
+- Added pspell module. (Vlad)
- Added 3 additional arguments to the user-defined error handler - the file
name and line number in which the error occured, and the context (local
variables) of the code in which the error occured (Zeev, Zend Engine)
diff --git a/ext/standard/array.c b/ext/standard/array.c
index cc2b1b844e..63c9362798 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -2425,7 +2425,7 @@ int multisort_compare(const void *a, const void *b)
efree(args); \
RETURN_FALSE;
-/* {{{ proto bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC] [, array ar2 [, SORT_ASC|SORT_DESC], ...])
+/* {{{ proto bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])
Sort multiple arrays at once similar to how ORDER BY clause works in SQL */
PHP_FUNCTION(array_multisort)
{