summaryrefslogtreecommitdiff
path: root/modules/user.module
Commit message (Collapse)AuthorAge
* - 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".
* - Fixed warning in user module.Dries Buytaert2002-10-07
|
* - coding style improvements.Kjartan Mannes2002-09-30
|
* - fixing user registration and field validation.Kjartan Mannes2002-09-25
|
* - Fixed e-mail regex to accept ".info" TLDs as well as other future TLDs,Dries Buytaert2002-09-17
| | | | | fixed e-mail regex to accept IP addresses (eg. 127.0.0.1), changed some HTML to XHTML, fixed some cosmetic glitches, etc.
* - fixing a typo (was missing a $).Kjartan Mannes2002-09-10
|
* - adding "Default theme" option to user_admin_edit()Kjartan Mannes2002-09-08
|
* - fixing creation of first user.Kjartan Mannes2002-09-08
| | | | | - password is now printed for uid 1. - made user_fields() always return something.
* - use <?pjp instead of <?. //TODO: check other files to make sure they areKjartan Mannes2002-09-08
| | | | not using short tags.
* - Removed a MySQL-ism from the user module. Patch by James.Dries Buytaert2002-08-18
| | | | - Fixed the "uid < 0" issue. Fix by Marco.
* - Changed a MySQL-ism to be ANSI SQL/PostgreSQL compliant. Patch by jaa.Dries Buytaert2002-08-16
|
* - Applied user.module patch from Marco's sandbox.Dries Buytaert2002-08-08
| | | | - Added profile.module written by Marco.
* - fixing email regular expression.Kjartan Mannes2002-07-31
|
* - preventing a segfault in PHP. Can someone verify that session writing ↵Kjartan Mannes2002-07-26
| | | | still works?
* - Fixed small bug in user.module. Patch by Marco.Dries Buytaert2002-07-13
|
* - added some missing title attributs to links.Kjartan Mannes2002-06-14
|
* - fixing an error when no DA modules were loaded.Kjartan Mannes2002-06-13
| | | | - indentation issue in node module.
* - default theme added to theme options + some clean up.Kjartan Mannes2002-06-10
| | | | | | - title of "blog it" item is used as default node title. - added link to news feed admin pages on import_page. - "blog it" link only shows when the blog module is available.
* - fixing outgoing mails and added some documentation.Kjartan Mannes2002-06-09
|
* - Some small editorial changes to the user module.Dries Buytaert2002-06-09
|
* - Included Moshe's *excellent* user module documentation.Dries Buytaert2002-06-09
| | | | | NOTE: I remove the gravity stuff as this optional and already documented in rating.module.
* - improved module descriptions.Kjartan Mannes2002-06-08
| | | | | | | - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author.
* - More documentation updates. Added "Requires crontab" message to theDries Buytaert2002-06-08
| | | | settings that require crontab, make some things more consistent, etc.
* - Clarified the help texts a bit.Dries Buytaert2002-06-08
|
* - Small detail in the help.Dries Buytaert2002-06-08
|
* - adding descriptions to modules (thanks Joe + Scott).Kjartan Mannes2002-06-01
| | | | | | | | | | - fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
* - fixing who is online block.Kjartan Mannes2002-05-31
|
* - modified the user blocks to use the same layout and trim long usernames toKjartan Mannes2002-05-29
| | | | keep the blocks from ruining theme layouts.
* - the user_admin_edit() would loose the theme settings.Kjartan Mannes2002-05-24
| | | | - added some more help text to page.module.
* - pending user accounts will not be notified to the site_email.Kjartan Mannes2002-05-23
| | | | | | | | | | | | | - fixed access checks on the register form, do this before you enter the _save function. If registrations are disabled the register link will no longer show (again). - changed &#187 to &raquo, using the names of entities are better than the numbers. - fixed user information being set when account is registered (properly this time, really!) - reversed the if(!...) commit. - node_add specifies more defaults. - added link to blog entries from user page.