Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | removed warnings | Harald Radi | 2001-06-10 | 1 | -1/+1 | |
| | ||||||
* | Signal that no entry was found | Sascha Schumann | 2001-06-10 | 1 | -1/+1 | |
| | ||||||
* | Check for http_session_vars != NULL. | Sascha Schumann | 2001-06-08 | 1 | -1/+3 | |
| | ||||||
* | Fold a bit more code | Rasmus Lerdorf | 2001-06-06 | 1 | -5/+17 | |
| | ||||||
* | * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) | Stig Bakken | 2001-05-24 | 1 | -0/+4 | |
| | ||||||
* | Due to dynamic registration of storage handlers, OnUpdateSaveHandler | Sascha Schumann | 2001-05-23 | 1 | -3/+12 | |
| | | | | | | | might be called before that registration takes place and hence the INI update is dismissed. In that case, we defer the lookup to the first request init. | |||||
* | @- Made $HTTP_SESSION_VARS['foo'] and $foo be references to the same value | Andrei Zmievski | 2001-05-22 | 1 | -2/+2 | |
| | | | | | @ when register_globals is on. (Andrei) | |||||
* | Improve reading from external data source for session id creation. | Sascha Schumann | 2001-05-19 | 1 | -11/+19 | |
| | | | | | Improve generating the string representation of the md5 session id. | |||||
* | Nuke some warnings. | Sascha Schumann | 2001-05-13 | 1 | -3/+3 | |
| | ||||||
* | add an interface for registering storage modules at run-time. | Sascha Schumann | 2001-05-03 | 1 | -4/+27 | |
| | ||||||
* | Patch from Sascha that abstracts session serializers. WDDX extension | Andrei Zmievski | 2001-05-01 | 1 | -121/+37 | |
| | | | | | | now implements the encode/decode functions and registers them with the session module. | |||||
* | - Change macros from V_ to VCWD_ because of AIX name clash | Andi Gutmans | 2001-04-30 | 1 | -2/+2 | |
| | ||||||
* | - use get_current_key_ex() in order to receive key length and not having | Andi Gutmans | 2001-04-26 | 1 | -29/+24 | |
| | | | | | - to use strlen() everywhere. | |||||
* | compile was broken, new argument? | Shane Caraveo | 2001-04-26 | 1 | -1/+1 | |
| | ||||||
* | buf is gone. Don't reference it. | Sascha Schumann | 2001-03-13 | 1 | -1/+1 | |
| | ||||||
* | Replace another sprintf | Sascha Schumann | 2001-03-13 | 1 | -3/+5 | |
| | ||||||
* | Nuke calls to sprintf, snprintf, strcat, strcpy and rely on | Sascha Schumann | 2001-03-13 | 1 | -44/+34 | |
| | | | | | memcpy and smart_strs. | |||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | ||||||
* | Use MAKE_STD_ZVAL/FREE_ZVAL to handle zval memory allocation. | Sascha Schumann | 2001-01-07 | 1 | -4/+4 | |
| | ||||||
* | Use zval_ptr_dtor instead of zval_dtor/FREE_ZVAL pair. | Sascha Schumann | 2001-01-07 | 1 | -2/+1 | |
| | | | | | Submitted by: Andi Gutmans | |||||
* | More instances of s/efree/FREE_ZVAL/ | Sascha Schumann | 2000-12-24 | 1 | -1/+1 | |
| | ||||||
* | (PHP session_unset) Return early, if no session was started. | Sascha Schumann | 2000-12-22 | 1 | -0/+3 | |
| | | | | | PR: #8354 | |||||
* | Heads up people! | Zeev Suraski | 2000-12-22 | 1 | -10/+4 | |
| | | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok... | |||||
* | Whitespace fix and initialize ret properly | Sascha Schumann | 2000-11-22 | 1 | -9/+9 | |
| | ||||||
* | Move "replace value" logic to Zend | Stanislav Malyshev | 2000-11-20 | 1 | -13/+3 | |
| | ||||||
* | Fix #3261 - variables declared as "global" in function do not get the right | Stanislav Malyshev | 2000-11-19 | 1 | -5/+26 | |
| | | | | | value after session_start. | |||||
* | Const'ify part of sapi_request_info. | Sascha Schumann | 2000-11-02 | 1 | -1/+1 | |
| | | | | | | query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const. | |||||
* | Add support for serializing references. | Stanislav Malyshev | 2000-10-30 | 1 | -4/+20 | |
| | | | | | | @- Add support for serializing references (Stas) # WDDX and shared memory functions not covered yet | |||||
* | Initial steps to move the INI mechanism to the Zend engine | Zeev Suraski | 2000-10-29 | 1 | -7/+7 | |
| | ||||||
* | Allow to send secure cookies | Stanislav Malyshev | 2000-10-28 | 1 | -4/+19 | |
| | ||||||
* | Add session_adapt_url(). | Sascha Schumann | 2000-10-26 | 1 | -6/+11 | |
| | ||||||
* | session_unset() now cleans up $HTTP_SESSION_VARS as well. | Andrei Zmievski | 2000-10-26 | 1 | -0/+3 | |
| | ||||||
* | Fixed a bug in session.c. If the user calls session_module_name with a | Alexander Feldman | 2000-10-23 | 1 | -7/+11 | |
| | | | | | | | parameter, then the mod_data pointer is initialized to NULL and then php_session_save_current_state did not check this value before referencing the pointer. Added a check in php_session_save_current_state. | |||||
* | Add session_write_close(). This is primarily intended to enable | Sascha Schumann | 2000-10-11 | 1 | -7/+18 | |
| | | | | | | | | | script writers to release the lock associated with the session lock before the request finishes. You can pass arrays now to session_set_save_handler(), so that the handlers can be located in an object for better abstraction. | |||||
* | Clean up STR_CAT macro (it is still ugly) | Sascha Schumann | 2000-09-27 | 1 | -8/+3 | |
| | ||||||
* | Remove superflucious variable | Sascha Schumann | 2000-09-26 | 1 | -3/+1 | |
| | ||||||
* | Deactivate E_NOTICE message on gc | Sascha Schumann | 2000-09-20 | 1 | -0/+2 | |
| | ||||||
* | s/url_scanner.h/url_scanner_ex.h/ | Sascha Schumann | 2000-09-20 | 1 | -1/+1 | |
| | ||||||
* | Make the new url scanner the default. | Sascha Schumann | 2000-09-20 | 1 | -1/+1 | |
| | | | | | If there are any problems (especially with characters > 127), let me know. | |||||
* | Kill warning | Sascha Schumann | 2000-09-19 | 1 | -2/+0 | |
| | ||||||
* | *** empty log message *** | Sascha Schumann | 2000-09-19 | 1 | -3/+1 | |
| | ||||||
* | Convert some more "complex" expressions manually to Z_* macros. | Sascha Schumann | 2000-09-06 | 1 | -7/+7 | |
| | ||||||
* | Rename symbols whose first character was an underscore. | Sascha Schumann | 2000-09-06 | 1 | -25/+25 | |
| | ||||||
* | Convert to Z_* macros | Sascha Schumann | 2000-09-06 | 1 | -47/+47 | |
| | ||||||
* | Why make it more complex than necessary? | Sascha Schumann | 2000-09-06 | 1 | -58/+13 | |
| | | | | | | | | | | | These changes should have been committed right after Zeev made the original change to use the PHP_INI system months ago. Instead of working around the system, we make proper use of it now. This includes using php_alter_ini_entry(), so that we change the values in the php_ps_globals struct indirectly. | |||||
* | Now it should not crash, though still leaks | Stanislav Malyshev | 2000-09-05 | 1 | -1/+8 | |
| | | | | | # I'll continue with it tomorrow | |||||
* | This fix wasn't quite right and is no longer necessary after the recent ↵ | Zeev Suraski | 2000-09-05 | 1 | -1/+1 | |
| | | | | php_ini optimizations | |||||
* | - Fix leak | Zeev Suraski | 2000-09-05 | 1 | -3/+3 | |
| | | | | | - Remove redundant php_ini code | |||||
* | Fix crash | Stanislav Malyshev | 2000-09-05 | 1 | -1/+1 | |
| | | | | | # This is getting worse... Seems that more work is needed | |||||
* | - Remove track_vars - it is now always on | Zeev Suraski | 2000-09-05 | 1 | -38/+7 | |
| | | | | | | | - Make the various $HTTP_*_VARS[] arrays be defined always, even if they're empty - Fix Win32 build and warnings |