summaryrefslogtreecommitdiff
path: root/modules/user
Commit message (Collapse)AuthorAge
...
* - 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.
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Made sure the text doesn't wrap.Dries Buytaert2003-01-10
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* - Usability improvement: made the remaining user administration pages useDries Buytaert2002-12-29
| | | | | | | | | | the new table rendering functions; access rule table, permission table, role table, etc. - Usability improvement: made the permission table translatable. Requested by Stefan. - Code improvement: removed some redundant check_output()s.
* CHANGES:Dries Buytaert2002-12-29
| | | | | | | | | | - Usability improvement: made the user administration pages use the new table rendering functions. - Usability improvement: added pager support to the user administration pages. - Code improvement: fixed code indentation.
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* * Applied slightly modified version of Marco's taxonomy patch:Dries Buytaert2002-12-02
| | | | | | | | | | | | | | | | | - Fixed a bug with get_tree and multiple parents. - Fixed 3 wrong caches (this will avoid some queries). - Extension to taxonomy_term_count_nodes() (feature #159): "currently calling taxonomy_term_count_nodes() returns the amount of nodes in each term, would it be possible to extend this function so that it would only return the amount of nodes of a certain type under each term. - Confirm deleting a vocabulary or a term (requested by Moshe). - Use form_weight() in vocabulary and term forms. - After submitting a term, we end up at the term page (requested by Moshe). - Added status messages when adding, editing and deleting vocabularies and terms - Minor clean ups * Made sure all modules use the same link delimiter; "|" for now.
* - Fixed the "affiliate" text when all distributed authententication modulesDries Buytaert2002-11-25
| | | | are disabled. Patch by Gerhard.
* - Applied Stefan's t()-function patches.Dries Buytaert2002-11-10
|
* * User patch by Natrak:Dries Buytaert2002-11-09
| | | | | - Moved the Drupal login XML-RPC API to drupal.module. - DA logins are now assigned the proper role.
* * Added Jeremy's pager:Dries Buytaert2002-11-09
| | | | | | | | | | | | | | | | | | | | | | | "This is a simple, generic pager for Drupal-CVS. It is designed to be easily themeable and expandable. The code is highly-commented to enhance readability." "Pagers are constructed by combining the provided pieces (all of which can be easily modified to display the text or image you prefer) into your custom pager." * Statistics module fixes by Jeremy: - removed superfluous check for existence of watchdog() - saving changes in admin page displays status and returns same page - no longer return 1971/01/01 in "view statistics" table - switched from "!=" to "<>" in SQL queries for ANSI-SQL compliance - switched from "MAX(timestamp) as timestamp" to "MAX(timestamp) as max_timestamp" moving towards ANSI-SQL compliance. * Added a "theme_item_list" function to format itemized lists. Also changed a couple of modules to take advantage of it. Makes for a more consistent UI.
* - Fixed glitch in block module: the admin links were not composedDries Buytaert2002-11-01
| | | | | | | | | | | | | | | | | | | | | | | | | correctly. Patch by Stefan. - Added missing t() functions and improved the %x directives for better readability and to ease the process of translating your site. Patches by Stefan. - Made two small additions to the 'code-clean.sh' script; it will now remove patch related junk. NOTES: - I removed the &middot; related bits. Let's tackle these later on in a separate patch after we got some sort of consensus. - I removed the 'module_exist("drupal")' check in the user module; I *think* it is incomplete and therefore incorrect. - Stefan, try using quotes in your translations and check whether everything still works. Example: translate the "Create account" button to "Create \"haha\" account \'hihi\'" and see if you can still create new accounts. Maybe automate this using a quick hack in the locale module ...
* - Committed Marco's block rewrite:Dries Buytaert2002-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | + Blocks are not longer called if not rendered: major performance improvement. + Fixed some bugs (preview option was broken, path option was broken). + Removed "ascii"-type blocks. + Added permission to for "PHP blocks" + ... NOTES: + You'll want to run "update.php": ALTER TABLE blocks DROP remove; ALTER TABLE blocks DROP name; + You'll want to update your custom modules as well as the modules in the contrib repository. Block function should now read: function *_block($op = "list", $delta = 0) { if ($op == "list") { return array of block infos } else { return subject and content of $delta block } }
* - Wrapped some hardcoded colors in "theme_invoke()"s; we can still createDries Buytaert2002-10-22
| | | | | | | | a drupal_error() later on but I think we better get used to theme_invoke(). - Fixed translation bug. Patch by Moshe. - Fixed PHP warning. Patch by ax.
* - Fixed bug in user_save().Dries Buytaert2002-10-13
| | | | - Added "Who's new" block. I accidentically removed it.
* - Committed Jeremy's incarnation of the statistics module. Last minutesDries Buytaert2002-10-13
| | | | | | | | | | | | | | | changes include: * a couple of coding style changes, renamed some "stats" into "statistics", etc. * removed the "Who's online" block from the user module. * added db_affected_rows() to the resp. database abstraction layers and made the statistics module use db_affected_rows() instead. * added update logic to "update.php".