Skip to content
  1. Jul 09, 2003
    • Dries Buytaert's avatar
      · c5deefd6
      Dries Buytaert authored
      - Bugfix: fixed the "check for duplicate e-mail addresses" test.  Patch by
        Marco.
      c5deefd6
  2. Jul 02, 2003
  3. Jun 30, 2003
    • Dries Buytaert's avatar
      · 886ae2bf
      Dries Buytaert authored
      - Fixed some "search related" bugs introduced by Moshe's latest patch.
        Fixes bug #2127.
      886ae2bf
  4. Jun 26, 2003
    • Dries Buytaert's avatar
      · 2323e572
      Dries Buytaert authored
      - Improvement: moved hard-coded CSS from user module to drupal.css.  Patch
        #57 by Kristjan.
      2323e572
  5. Jun 25, 2003
    • Dries Buytaert's avatar
      · 2689d6aa
      Dries Buytaert authored
      - Narrow the set of allowed usernames to prevent people from messing with it.
      2689d6aa
  6. Jun 23, 2003
  7. Jun 20, 2003
    • Dries Buytaert's avatar
      · fbbccada
      Dries Buytaert authored
      - Translation improvement.  Patch by Stefan.
      fbbccada
    • Dries Buytaert's avatar
      · e57faf21
      Dries Buytaert authored
      - Bugfix: fixed problem with changing themes.  Didn't apply Al's patch as
        the fix was somewhat simpler.  Fixes bug #2003.
      
      - Bugfix: fixed problem with voting on certain poll pages.  Patch #37 by Al.
      
      - Improvement: removed stupid descriptions from profile module.
      e57faf21
    • Dries Buytaert's avatar
      · 7fd4cc4b
      Dries Buytaert authored
      - Bugfix: fixed problem with the use of % on the user module form.  Patch
        by Slavica.  Fixes bug #1730.
      7fd4cc4b
  8. Jun 19, 2003
    • Dries Buytaert's avatar
      · 828ba665
      Dries Buytaert authored
      - Bugfix: fixed utf-8 problem for people that use PHP 4.2.x or below.  Patch #33 by Al.
      
      - Bugfix: fixed translation problems in the user module and the block module.  Patch by Stefan.
      
      - Improvement: made it impossible to delete user role #1 and #2.  Patch #38 by Al.
      
      - Improvement: fixed the "Allowed HTML tag" issues.  Makes for better code and improved usability.  Patch #35 by Al.
      
        NOTE: as soon the compose tips make their way into CVS, most of this code can be removed.
      828ba665
  9. Jun 18, 2003
    • Dries Buytaert's avatar
      · 63fb132e
      Dries Buytaert authored
      - Bugfix: it was not possible to delete a user account when "delete" was
        translated.  Patch by Stefan.
      63fb132e
    • Dries Buytaert's avatar
      · f4fe0cf1
      Dries Buytaert authored
      - Improvement: made the user module use themeable lists.  Patch #32 by Kristjan.
      f4fe0cf1
  10. Jun 16, 2003
  11. Jun 15, 2003
    • Dries Buytaert's avatar
      · e5f2c1ef
      Dries Buytaert authored
      - Usability improvement: avoid showing two login forms on one page.  Suggested
        by Keith.
      e5f2c1ef
    • Dries Buytaert's avatar
      · 8a9a5ba3
      Dries Buytaert authored
      - Bugfix: the variable 'user_mail_welcome_approval_subject' was too long.
        Modified patch from Al; used 'user_mail_approval_subject' instead of
        'user_mail_welcome_approval_subj'.  Patch #11 by Al.  Fixes bug #1976.
      8a9a5ba3
    • Dries Buytaert's avatar
      · c31fe45f
      Dries Buytaert authored
      - Improvement: fixed wrapping in code samples in user module so that admin help doesn't have a huge horizontal scrollbar.  Patch #13 by Al.
      c31fe45f
    • Dries Buytaert's avatar
      · eb030cb9
      Dries Buytaert authored
      - Improvements: XHTML-ifications.  Patch by GmbH.
      eb030cb9
  12. Jun 14, 2003
    • Dries Buytaert's avatar
      · 3e9aabe0
      Dries Buytaert authored
      - Moved some CXX checks to a centralized place; less error-prone.
      3e9aabe0
  13. Jun 13, 2003
    • Dries Buytaert's avatar
      · d95499bf
      Dries Buytaert authored
      - Bugfix: small Xtemplate fixes.  Patch by Ax.  (Slightly modified.)
      
      - Bugfix: block patch fix.  Patch by Gerhard.
      
      - Bugfix: fixed broken URL in ping.  Patch by Gerhard.
      
        (This should fix the problems shown on http://www.blo.gs/info.php?id=1515.)
      
      - Improvement: added better password generator.  Patch #1 by Al.  Fixes bug
        #1935.
      
      - Improvement: performance improvement to the blog module.  Patch by Marco.
      d95499bf
  14. Jun 11, 2003
    • Dries Buytaert's avatar
      · 9e813c08
      Dries Buytaert authored
      - Bugfix: when clean URLs are enabled, the cookie path was not always set correctly when the
      user logged using the user block from within a subdirectory.  Patch by Ulf Rompe.
      9e813c08
    • Dries Buytaert's avatar
      · 3b8c99d9
      Dries Buytaert authored
      - Bugfix: fixed the CREATE FUNCTION in database.mssql as it needs to be 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.
      3b8c99d9
  15. Jun 10, 2003
    • Dries Buytaert's avatar
      Patch be Matt Westgate: · cf5a17ca
      Dries Buytaert authored
      - 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.
      cf5a17ca
  16. Jun 08, 2003
    • Dries Buytaert's avatar
      · d4ec431b
      Dries Buytaert authored
      - Bugfix: fixed approval e-mail and tidied up the e-mail handling.  Patch #43 by
        Al.  Fixes bug #1828.
      d4ec431b
  17. Jun 07, 2003
  18. Jun 06, 2003
  19. Jun 03, 2003
    • Dries Buytaert's avatar
      · ed528531
      Dries Buytaert authored
      - CSS improvements: use form functions wrapped in a <div> instead of
        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.
      ed528531
  20. Jun 02, 2003
    • Dries Buytaert's avatar
      · c8b64632
      Dries Buytaert authored
      - Resized two textfields for UI consistentcy.  Patch by Stefan.
      c8b64632
  21. May 31, 2003
    • Dries Buytaert's avatar
      · 5e2ce076
      Dries Buytaert authored
      - Documentation fixes by Kjartan.
      5e2ce076
  22. May 29, 2003
    • Dries Buytaert's avatar
      · 1fc8a18c
      Dries Buytaert authored
      - Al's CSS patches.  This commit improves the themability of some core
        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).
      1fc8a18c
    • Dries Buytaert's avatar
      · 8d2b1238
      Dries Buytaert authored
      - Michael Frankowski's excellent help text improvements!
      8d2b1238
  23. May 19, 2003
  24. May 18, 2003
    • Dries Buytaert's avatar
      · 8205b626
      Dries Buytaert authored
      - Replaced some PHP_SELF's by request_uri()'s.  Patch by Gerhard.
      8205b626
    • Dries Buytaert's avatar
      · 494aa87e
      Dries Buytaert authored
      - Small change that reduces the number of SQL queries when a certain role has
        no permissions set.
      494aa87e
  25. May 13, 2003
    • Dries Buytaert's avatar
      · c2d2fb73
      Dries Buytaert authored
      - Fixed a typo in the PostgreSQL database scheme.  Patch by Michael Frankowski.
      
      - 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.
      c2d2fb73
  26. May 07, 2003
    • Dries Buytaert's avatar
      · a161110a
      Dries Buytaert authored
      - Applied  Michael Caerwyn's "%s -> %d" patch.
      
      - Changed all occurences of '%d' to %d as suggested on the mailing list.
      a161110a