summaryrefslogtreecommitdiff
path: root/includes/session.inc
Commit message (Collapse)AuthorAge
* #203274 by Pasqualle: remove excessive witespace from our code (minor)Gábor Hojtsy2007-12-22
|
* security fixes forward ported from Drupal 5.2 - previously not committed ↵Gábor Hojtsy2007-12-05
| | | | parts of http://drupal.org/cvs?commit=74833
* - Patch #163191 by hswong3i: removed db_num_rows() for compatibility with ↵Dries Buytaert2007-08-12
| | | | Oracle and DB2. Also a performance improvement.
* - Patch #40545 by Moshe: reduces contention in the users table.Dries Buytaert2007-07-23
|
* - Patch #142773 by kbahey: made Drupal work correctly when behind a reverse ↵Dries Buytaert2007-05-25
| | | | proxy.
* - Patch #139517 by Grugnog2: improved code comment.Dries Buytaert2007-04-27
|
* #130971: Kitchen sink (E_NOTICE compliance / Code style / Bugfix in book toc)Steven Wittens2007-03-27
|
* - Patch #90612 by Bart Jansens: user_logout should only end the current session.Dries Buytaert2006-12-04
|
* #93945 by chx. Save sessions before objects are destroyed on some ↵Neil Drumm2006-11-11
| | | | configurations.
* #91046 by jvandyk. Fix handling of expired sessions.Neil Drumm2006-11-07
|
* - Patch #87372 by drumm: Broken loginKjartan Mannes2006-10-25
|
* - Patch #87372 by crunchywelch: work around PHP session bug.Dries Buytaert2006-10-24
|
* - Patch #77936 by moshe and rdouglass: pluggable session handling.Dries Buytaert2006-08-31
|
* #79511 by timcn. Clean up some notices.Neil Drumm2006-08-21
|
* - Patch #79166 by hunmonk: fixed session breakage.Dries Buytaert2006-08-18
|
* - Patch #node/76931 by Robert: improved performance of Drupal's session ↵Dries Buytaert2006-08-16
| | | | handling.
* #61802 by Zen, Double spaced sentences clean upNeil Drumm2006-05-07
|
* #58166, fixes for typos, patch by Uwe HerrmannGerhard Killesreiter2006-04-11
|
* - Patch #41870 by fgm: improved debugging support.Dries Buytaert2006-02-20
|
* - Pach #44947 by Moshe: fixed bug with session handling.Dries Buytaert2006-02-17
|
* - Patch #44947 by rkerr / Moshe: fixed race condition in session handling, ↵Dries Buytaert2006-02-10
| | | | reduced query overhead of session handling, reduced database overhead of session handling.
* - Patch #44379 by Moshe: code improvements: always grant the 'authenticated ↵Dries Buytaert2006-01-21
| | | | user' role to authenticated users. Fixed glitch with udpate path.
* - Patch 42115 by Cvbge/ m3avrck: improved performance of session loading.Dries Buytaert2005-12-31
|
* - Patch #35354 by Moshe/chx: only update the last access time for ↵Dries Buytaert2005-10-28
| | | | authenticated users.
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Patch by Thomas: always use db abstraction layerDries Buytaert2005-08-10
|
* - Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidiedDries Buytaert2005-06-22
| | | | | | | up the documentation a little. chx: can you double-check whether the global $conf variable is secure? (That is, make sure it can't be send using the URL or something.)
* - User module improvements: added an 'access' column to the users-table toDries Buytaert2005-05-07
| | | | | | | | | | | | | keep track of the user's last access. In turn, this allowed me to: 1. Optimize the "Who's online" block. On drupal.org, the "Who's online" block requires 32 SQL queries. With this patch, only 2 queries are left (eliminated 30 SQL queries), and one of the two remaining queries became appr. 20 times faster. 2. Correct the "Last access" column in the user administration overview table. The presented data was not accurate, which led to the column being removed. You can now sort users by 'last access'.
* - Patch #19298 by Jeremy: loose caching!Dries Buytaert2005-04-11
| | | | | | Drupal's existing caching mechanism doesn't perform well on highly dynamic websites in which the cache is flushed frequently. One example is a site that is under attack by a spambot that is posting spam comments every few seconds, causing all cached pages to be flushed every few seconds. Loose caching immediately flushes the cache only for specific users who have modified cached data (whether or not they are logged in), delaying the flushing of data for other users by several minutes. (I rewrote the help text a bit and made minor changes to the code comments.)
* - Simplified the session code (PostgreSQL update).Dries Buytaert2005-03-01
|
* - Missing '>' (reported by Goba)Steven Wittens2005-03-01
|
* #17747: PGSQL improvementsSteven Wittens2005-02-28
|
* - Patch #15399 by adschar: fixed PHP5 error when a new session is inserted ↵Dries Buytaert2005-01-10
| | | | into the session table. (Better fix.)
* - Patch #15399 by adschar: fixed PHP5 error when a new session is inserted ↵Dries Buytaert2005-01-10
| | | | into the session table.
* - Performance improvement: made 'sid' the primary key of the sessions table.Dries Buytaert2004-11-07
| | | | | | | | | That should improve performance of session handling as well improve performance of the "Who's online"-block. Drupal.org's sessions table contains appr. 40.000 sessions on a slow day and rendering the "Who's online"-block became a performance bottleneck. This change has yet to be tested on a busy site so things might go wrong.
* - Patch by JonBob: for consistency and readability, add brief descriptions ↵Dries Buytaert2004-08-21
| | | | of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
* - Added support for multiple user roles. Patch by Jim Hriggs.Dries Buytaert2004-05-10
|
* - Fixed bug in session query that prevented sessions to work on PostgreSQL.Dries Buytaert2004-01-17
| | | | Patch by Adrian.
* - Patch 4859: new drupal_unpack() consolidates duplicate code and makes itDries Buytaert2004-01-13
| | | | | easy to show avatars next to nodes and comments. Patch by Moshe. As a showcase, maybe Xtemplate should have an option to enable/disable avatars?
* - Fixed bug 4745: undefined warning in sess_read().Dries Buytaert2004-01-11
|
* - Fixed race condition in session handler. Patch by Kjartan.Dries Buytaert2003-12-13
|
* - Fixes bug #4100: First visit to site results in 'access denied' page.Kjartan Mannes2003-11-18
| | | | | - Fixed sess_write(). - Removed dead code in index.php.
* - Improved module loading when serving cached pages. Moshe's bootstrap patch.Dries Buytaert2003-11-18
- Used legend and fieldset tags for the configuration page.