summaryrefslogtreecommitdiff
path: root/TODO-4.2.txt
diff options
context:
space:
mode:
Diffstat (limited to 'TODO-4.2.txt')
-rw-r--r--TODO-4.2.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/TODO-4.2.txt b/TODO-4.2.txt
deleted file mode 100644
index 9364fa1545..0000000000
--- a/TODO-4.2.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-* Change the odbc_fetch_into() function to require ALWAYS the first two
- parameters ($conn_id and $array), and make the third (row) be optional.
-
-* Remove --with-openlink configure option (--with-iodbc replaces it).
-
-* Always build CGI (--disable-cgi option to disable).
-
-* Move most extensions and PEAR packages out of the PHP CVS tree,
- include them again during release packaging.
-
-* Renaming functions, so that they all are conform to one standard form.
-
-* Allow foreach($array as $key => &$value).
-
-* Allow foreach($array as list($var1, $var2)).
-
-* Clean up "$instance = &new object" syntax (default to the =& behaviour?).
-
-* Allow to set a default value for call-by-reference-parameters. eg:
- function hallo (&$pallo = NULL) {}
-
-* Change PHP error messages, so that they point to pages or sections in the
- PHP Manual.
-
-* Fix Zend shallow copy issues with objects and arrays.
-
-* Make all extensions thread-safe.
-
-* Finish PHP streams abstraction, nuke all that issock stuff, implement SSL
- socket support. (wez)
- - ext/ftp/ -> all FILEs to streams
- - ext/bz2/ -> convert to stream impl.
-
-* Using arg_separator.input to implode args in the CGI sapi extension
- and arg_separator.input to explode in php_build_argv().