changelog Mon Sep 3 20:10:43 2001 EDT
Modified files:
/php4 ChangeLog
Log:
ChangeLog update
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.784 php4/ChangeLog:1.785
--- php4/ChangeLog:1.784 Sun Sep 2 20:10:58 2001
+++ php4/ChangeLog Mon Sep 3 20:10:39 2001
@@ -1,3 +1,130 @@
+2001-09-03 Sterling Hughes <[EMAIL PROTECTED]>
+
+ * ext/standard/pack.c: - update to php4 api
+ - expand case statements, ie:
+
+ case 1: case 2: case 3:
+
+ to
+
+ case 1:
+ case 2:
+ case 3:
+
+ - Remove un-necessary brackets and parentheses (only when it takes away from
+ readability, I know this is quite arbitrary, but I did my best :)
+
+ * ext/sablot/sablot.c: fix compile on sun forte cc
+
+2001-09-03 Andi Gutmans <[EMAIL PROTECTED]>
+
+ * ext/standard/array.c: - Fix thread safe mode.
+ - Please don't use Java style function braces.
+
+2001-09-03 Thomas V.V.Cox <[EMAIL PROTECTED]>
+
+ * pear/HTML/Menu.php: trailing ws
+
+2001-09-03 Rasmus Lerdorf <[EMAIL PROTECTED]>
+
+ * main/php_ini.c: MFH
+
+ * main/php_ini.c:
+ This is a list of char *'s, not zvals (caught by Nick - see bug #13107)
+
+2001-09-03 Derick Rethans <[EMAIL PROTECTED]>
+
+ * ext/standard/php_rand.h
+ ext/standard/rand.c: - Fix broken build
+
+2001-09-03 Stanislav Malyshev <[EMAIL PROTECTED]>
+
+ * ext/standard/math.c: Add _php_math_zvaltobase and _php_math_basetozval
+ This allows to use bindec, etc. functions to convert numbers longer
+ than fits in long, using floats instead.
+ Note: the functions like decbin still don't use the zval-ed functions,
+ so they work only on longs yet.
+
+2001-09-03 Thomas V.V.Cox <[EMAIL PROTECTED]>
+
+ * pear/HTML/Menu_Browser.php: some style/ws
+
+2001-09-03 Jeroen van Wolffelaar <[EMAIL PROTECTED]>
+
+ * ext/standard/php_rand.h:
+ Removed outdated comment until I've got a better one
+
+ * ext/standard/php_rand.h
+ ext/standard/rand.c:
+ Kill some warnings/errors (reported by Sebastian, more to come, but
+ could take some time. Update of ZTS-builderrors is welcome)
+
+2001-09-03 Sterling Hughes <[EMAIL PROTECTED]>
+
+ * ext/standard/reg.c: should be this
+
+ * ext/standard/reg.c: - Update to the PHP4 API (newer macros)
+ - Improve error reporting from split()
+ - Some minor speed improvements
+
+ * ext/standard/string.c: stray tabs
+
+ * ext/standard/string.c:
+ cleanup sscanf() just a tiny bit, just so it looks like the rest of the code
+ in the string.c file.
+
+2001-09-03 Jani Taskinen <[EMAIL PROTECTED]>
+
+ * main/SAPI.c
+ main/php_content_types.c
+ main/rfc1867.c: First step for chunkifying the HTTP uploads.
+
+2001-09-03 Richard Heyes <[EMAIL PROTECTED]>
+
+ * pear/Mail/mimeDecode.php:
+ Added initial release of mime decoding class. Currently somewhat experimental,
+ but is functional.
+
+2001-09-03 Jeroen van Wolffelaar <[EMAIL PROTECTED]>
+
+ * ext/standard/array.c:
+ Fix array_rand and array_suffle to use php_rand correctly
+
+ * ext/standard/array.c: Fix prototype
+
+ * NEWS:
+ Added RAND_REDESIGN change to NEWS (could be more elaborate, but IMHO
+ that should be in the manual?)
+
+ * ext/standard/rand.c:
+ Fix SIGSEGV because HAS_SRAND didn't check wether the entry existed at
+ all
+
+ * ext/standard/rand_mt.c
+ ext/standard/rand_sys.c: Add forgotten files to MAIN
+
+ * ext/standard/rand.c: Update credits
+
+ * ext/standard/Makefile.in
+ ext/standard/array.c
+ ext/standard/basic_functions.c
+ ext/standard/basic_functions.h
+ ext/standard/crypt.c
+ ext/standard/lcg.c
+ ext/standard/php_crypt.h
+ ext/standard/php_math.h
+ ext/standard/php_rand.h
+ ext/standard/php_standard.h
+ ext/standard/rand.c: Merge RAND_REDESIGN into MAIN
+
+ * ext/standard/rand.c
+ ext/standard/php_rand.h: Implement the proposal v2
+
+ Added PHPAPI php_drand, which returns a double in the range [0,1)
+
+ RAND_REDESIGN completed, prohibited some minor points. Ready to
+ be re-entered in MAIN branch
+
2001-09-02 Jeroen van Wolffelaar <[EMAIL PROTECTED]>
* ext/standard/php_rand.h