]> granicus.if.org Git - php/commitdiff
- s/encoded/encode/
authorSascha Schumann <sas@php.net>
Sun, 6 Jun 1999 15:18:51 +0000 (15:18 +0000)
committerSascha Schumann <sas@php.net>
Sun, 6 Jun 1999 15:18:51 +0000 (15:18 +0000)
- new TODO entry

ext/session/php_session.h
ext/session/session.c

index 480d5b23f95ffd82350737e59e436632f7add826..7441547828256f5ec4e313401cedd9ceb5854e7f 100644 (file)
@@ -94,7 +94,7 @@ PHP_FUNCTION(session_id);
 PHP_FUNCTION(session_decode);
 PHP_FUNCTION(session_register);
 PHP_FUNCTION(session_unregister);
-PHP_FUNCTION(session_encoded);
+PHP_FUNCTION(session_encode);
 PHP_FUNCTION(session_start);
 
 PS_FUNCS(files);
index aaa06664fb646127edfacb788fd8fa46e787dc26..637fdf89ff01ec558367a48729f1accf5ac6ab50 100644 (file)
@@ -34,6 +34,7 @@
  * - improve files handler for better scaling
  * - add complete support for objects (partially implemented)
  * - complete ZTS support (currently only useable as non-ZTS)
+ * - userland callback functions for ps_module
  */
 
 #include <sys/time.h>
@@ -63,7 +64,7 @@ function_entry session_functions[] = {
        PHP_FE(session_decode, NULL)
        PHP_FE(session_register, NULL)
        PHP_FE(session_unregister, NULL)
-       PHP_FE(session_encoded, NULL)
+       PHP_FE(session_encode, NULL)
        PHP_FE(session_start, NULL)
        {0}
 };
@@ -453,9 +454,9 @@ PHP_FUNCTION(session_unregister)
 }
 /* }}} */
 
-/* {{{ proto string session_encoded()
+/* {{{ proto string session_encode()
    serializes the current setup and returns the serialized representation */
-PHP_FUNCTION(session_encoded)
+PHP_FUNCTION(session_encode)
 {
        int len;
        char *enc;