summaryrefslogtreecommitdiff
path: root/modules/user.module
Commit message (Collapse)AuthorAge
* - Bugfix: fixed the CREATE FUNCTION in database.mssql as it needs to be ↵Dries Buytaert2003-06-11
| | | | | | | | | | | | | | | | | | | | | | | | prefixed with GO for some obscure reason. Patch by Kjartan. - Bugfix: fixed the defaults for blocks in database.mssql so the NOT NULL fields get values. Patch by Kjartan. - Bugfix: changed check_form() to use htmlspecialchars() instead of drupal_specialchars() as this caused Drupal to emit incorrect form items in presence of quotes. Example: <input type="submit" class="form-submit" name="op" value="Submit "top nodes" block changes" /> IMO, drupal_specialchars() is better called xmlspecialchars() to avoid confusion. - Bugfix: when an anonymous user visits a site, they shouldn't see any content (except the login block, if it is enabled) unless they have the "access content" permissions. Patch by Matt Westgate. - Improvement: improved the error checking and the error messages in the profile module. Updated the code to match the Drupal coding conventions. Modified patch from Matt Westgate. - Improvement: don't generate the <base href=""> tag in the base theme; it is already emitted by theme_head(). Patch by Kristjan. - Improvement: don't execute any SQL queries when checking the permissions of user #1. Patch by Kjartan. - Improvement: made a scalable layout form that works in IE and that behaves better with narrow themes. Part of patch #51 by Al. - Improvement: removed some redundant print statements from the comment module. Modified patch from Craig Courtney.
* Patch be Matt Westgate:Dries Buytaert2003-06-10
| | | | | | - Bugfix: in the user_admin_edit() function, the data array returned from the callback modules was not being merged into the edit array. - Bugfix: added enctype="multipart/form-data" to the form tag so that we can update things like the avatar image in the admin interface.
* - Bugfix: fixed approval e-mail and tidied up the e-mail handling. Patch #43 byDries Buytaert2003-06-08
| | | | Al. Fixes bug #1828.
* - Bugfix: clicking the "Login" button after having created the first userDries Buytaert2003-06-07
| | | | redirected you to an incorrect page. Patch by Moshe.
* - Check the destrination URL before redirecting.Dries Buytaert2003-06-07
|
* - Dropped check_input(); use check_query() instead.Dries Buytaert2003-06-06
| | | | - Made the statistics module use referer_uri() for security's sake.
* - Bugfix: removed redundant check_input()s such that quotes are handledDries Buytaert2003-06-06
| | | | properly. You couldn't use a username or passwords that had quotes.
* - Bugfix: fixed the login problem due to incorrect use of drupal_goto().Dries Buytaert2003-06-06
| | | | Gerhard's patch was not 100% correct and I found a better alternative.
* - CSS improvements: use form functions wrapped in a <div> instead ofDries Buytaert2003-06-03
| | | | | | | hard-coded form elements. Modified patch by Kristjan. I added some CSS to drupal.css to center the text and ordered the list of CSS tags alphabetically.
* - Resized two textfields for UI consistentcy. Patch by Stefan.Dries Buytaert2003-06-02
|
* - Documentation fixes by Kjartan.Dries Buytaert2003-05-31
|
* - Al's CSS patches. This commit improves the themability of some coreDries Buytaert2003-05-29
| | | | | | components such as lists, form items, removes an ugly hack from the archive module and should fix the poll problem (although it doesn't Opera/Konqueror).
* - Michael Frankowski's excellent help text improvements!Dries Buytaert2003-05-29
|
* - $_SERVER["edit"] -> $_POST["edit"]Kjartan Mannes2003-05-19
|
* - Patch by Jonathan Chaffer: $_SERVER["op"] -> $_POST["op"]Kjartan Mannes2003-05-19
|
* - Undid my changes to user_access().Dries Buytaert2003-05-19
|
* - Replaced some PHP_SELF's by request_uri()'s. Patch by Gerhard.Dries Buytaert2003-05-18
|
* - Small change that reduces the number of SQL queries when a certain role hasDries Buytaert2003-05-18
| | | | no permissions set.
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* - Applied Michael Caerwyn's "%s -> %d" patch.Dries Buytaert2003-05-07
| | | | - Changed all occurences of '%d' to %d as suggested on the mailing list.
* - Added missing t() function. Patch ba Al.Dries Buytaert2003-05-06
|
* - Fixed the function prototypes of the newly introduced theme_user_list(),Dries Buytaert2003-05-02
| | | | | theme_node_list(), and theme_menu_list(). This will fix the excessive gap between lists and avoids generating empty <b></b> constructs.
* - Committed Adrian's item patch. It would be nice if one or more of theDries Buytaert2003-04-29
| | | | standard themes could be updated to demonstrate the possibilities.
* - Added support for user registration guidelines. Patch by Al. Feature ↵Dries Buytaert2003-04-28
| | | | request #1109.
* - Fixed some PHP "notices".Dries Buytaert2003-04-21
|
* - Renamed 'validate_email_address' to 'valid_email_address'.Dries Buytaert2003-04-13
| | | | - Added a 'form_radio' function.
* - Patch by Ax. Fixed some syntax errors:Dries Buytaert2003-04-04
| | | | | - case t("whatever"); + case t("whatever"):
* - Fixed some SQL query directives.Dries Buytaert2003-03-29
|
* - Moved the logic of email validation from user_validate_mail to a new functionDries Buytaert2003-03-28
| | | | in common.inc. Modified patch from Gerhard.
* - Another improvement to the e-mail address validation code. Fixed DebianDries Buytaert2003-03-19
| | | | bug #185217. Patch by Gerhard.
* - Fixed glitch in e-mail verification code. Patch by Gerhard.Dries Buytaert2003-03-18
|
* - All LIMIT queries must go through the pager or through db_query_range().Dries Buytaert2003-03-16
| | | | | | | | | | | | | | | The syntax for db_query_range() was enhanced so it matches db_query(). So you may pass extra arguments of the SQL statement which are checked via check_query() and then substituted into the SQL statement. After these optional arguments, you always pass $from and $count parameters which define your range. Most often, the $from is 0 and the count is the max number of records you want returned. Patch by Moshe. - The pager_query() function for PEAR was enhanced so that it adds proper GROUP BY statement counting the number of records to be paged. Patch by James Arthur. - MSSQL database scheme by Moshe.
* - Fixed a CSS glitch. Thanks Al.Dries Buytaert2003-03-14
| | | | - Removed extraneous %uri's.
* - Fixed translation bug.Dries Buytaert2003-03-12
| | | | | | - Fixed broken queries: use 'AND' instead of '&&'. Reported by Neil. - Fixed broken URLs in e-mails. Reported by Stefaan.
* - Fixed request 583. Patch by Al.Dries Buytaert2003-03-10
|
* - Moved moderation logic back into node module.Kjartan Mannes2003-03-09
| | | | | | | | | | * After having a chat with Dries we have agreed on the logics (or more specifically he told me how its supposed to work). The queue module is just a method to make moderation public, but its not necessarily the only way. This brings the power back. - Minor interface tweaks (names, case changes, etc). - Fixed error that would show when you tried to view the profile of a blocked user.
* - Moved some block up to avoid the user module duplicating data.Dries Buytaert2003-03-09
|
* - Removed the path_uri() function in favor of the $base_url variable andDries Buytaert2003-03-07
| | | | fixes a handful of bugs introduced by the clean URL patch.
* - Grammar fix. Patch by Al.Dries Buytaert2003-03-02
|
* - Fixed some typos spotted by Al Maw.Dries Buytaert2003-02-25
|
* - New menu houskeeping. Prototyped by Zbynek.Dries Buytaert2003-02-20
| | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead.
* - Theme options patch. See mailing list.Dries Buytaert2003-02-17
|
* - Modifying user_validate_mail() to accept more e-mail addresses.Kjartan Mannes2003-02-15
|
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. RequiDries Buytaert2003-02-09
| | | | red for Drupal to work on new versions of PostgreSQL. Patch by James.
* - Corrected misplaced quote. Reported by Gerhard.Dries Buytaert2003-01-29
|
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - Tidied up some SQL queries.Dries Buytaert2003-01-20
|
* - Fixed bug/warning when an anonymous users tries to post a node. ReportedDries Buytaert2003-01-15
| | | | by David.