Skip to content
  1. Mar 15, 2005
    • Dries Buytaert's avatar
      - More improvements by Morbus, Goba, TDobes et al: · 2919df0e
      Dries Buytaert authored
      Per TDobes' comments:
      
      * INSTALL.txt corrected to use 4.3.3, not 4.33.
      * .htaccess: removed allow_call_time_pass_reference. two confirmations that a) the setting was wrong in the first place, b) there were no adverse affects for the incorrect setting, c) the PHP docs say it is deprecated.
      * .htaccess: removed short_open_tag. Running grep -r "<? " * across the entire directory tree of both core and contributions only brought up contributions and no core. I agree that the fuller form is better. The following contributions will need to be updated: modules/edit_template/edit_template.module, sandbox/garym/themes/marvin_2k/templates/page.tpl.php, sandbox/killes/compare.php, sandbox/paolino/import/click.php, themes/spreadfirefox/block.tpl.php. For error's sake, I also did a manual verification for "<?" (no space) across core and came up against nothing in addition to the above contribs.
      
      Per Goba's comments:
      
      * .htaccess: Moved session.auto_start back.
      * sites/default/settings.php: Removed track_vars.
      
      Per mailing list comments:
      
      * INSTALL.txt: Added text about the files/ directory, creating it, and permissions.
      * INSTALL.txt: Added an example of why Drupal requires cron (the search.module) in an attempt to justify why a crontab is a good, nay, required step.
      
      And my own further analities:
      
      * .htaccess: cleaned up some whitespace valleys (i hate 'em, hate 'em!) and fixed a few stray colons.
      * settings.php: minor whitespace error.
      2919df0e
  2. Mar 12, 2005
  3. Feb 21, 2005
  4. Feb 20, 2005
  5. Feb 18, 2005
    • Dries Buytaert's avatar
      - Patch #17303 by tangent: moved the session settings into... · 4f79fafb
      Dries Buytaert authored
      - Patch #17303 by tangent: moved the session settings into /sites/default/settings.php so that subsites can have better control over them. One of the advantages of the site specific settings.php file is that it will never get overwritten during upgrades and having these settings here should prove to be more friendly.
      4f79fafb
  6. Jan 28, 2005
  7. Oct 09, 2004
  8. Aug 20, 2004
  9. Dec 18, 2003
    • Dries Buytaert's avatar
      · 033b2e2c
      Dries Buytaert authored
      - Direct 404s to Drupal.  Suggested by Goba.
      033b2e2c
  10. Dec 16, 2003
    • Dries Buytaert's avatar
      · 670a2922
      Dries Buytaert authored
      - Reworked 404 (page not found) handling.  Patch by walkah.  You can specify a
        custom 404 page in the administration page.  As a result, error.php could be
        removed.
      670a2922
  11. Dec 15, 2003
    • Dries Buytaert's avatar
      · ce5d3a06
      Dries Buytaert authored
      - Added some Apache 2 specific instructions.
      ce5d3a06
  12. Sep 18, 2003
  13. Sep 09, 2003
    • Dries Buytaert's avatar
      · 8e657f64
      Dries Buytaert authored
      - Gerhard's uid 0 patches.  These patches bring various performance
        improvements.  Requires a database update.
      8e657f64
  14. Aug 22, 2003
    • Dries Buytaert's avatar
      · 60ce4e05
      Dries Buytaert authored
      - Set session.gc_maxlifetime to something more sensible than the default
        1440 seconds.
      60ce4e05
  15. Jun 26, 2003
    • Dries Buytaert's avatar
      · 594aff05
      Dries Buytaert authored
      - Set some additional options to avoid installation pains.
      594aff05
  16. Jun 03, 2003
    • Dries Buytaert's avatar
      - Bugfix: made request_uri() rewrite ( and ) with their entity equivalents · 05288ac4
      Dries Buytaert authored
      to avoid XSS attacks!  Patch by Al, Moshe, Marco, Kjartan and me.
      
      - Bugfix: the admin module does now import drupal.css prior to admin.css.
      Patch by me.
      
      - Bugfix: the admin module was still emitting a <base href=""> tag.  I
      removed this as it is been taken care of by theme_head();  Patch by me.
      
      - Bugfix: made the tracker module's pager only consider published pages.
      Patch by Moshe.
      
      - Bugfix: cured some typos in the comment module's help function.  Patch by
      Marco.
      
      - Bugfix: fixed a typo in the pager_display() that caused optional
      attributes to be discarded.
      
      - Bugfix: made the Xtemplate emit empty boxes like any other theme does.
      Patch by Al.
      
      - Bugfix: fixed broken link on the statistics module's log page.
      Reported by Kjartan.
      
      - CSS improvements: made the HTML output emitted by the tracker module
      look nicer.  Patch by Moshe and Al.
      
      - CSS improvements: added CSS classes for form elements.  Patch by Al.
      
      - CSS improvements: added a vertical gap between the last form item and the
      submit button.  Patch by Al.  Note that Opera 6 is not picking up this
      CSS but apparently others browsers such as Konqueror do.
      
      - Xtemplate improvements: changed the color of the selected day in the
      archive module's calendar.  Patch by Al.
      
      - Usability improvements: made the "birthday" field of the profile module
      look nicer.  Patch by Al.
      
      ------
      
      - TODO: it might be a good idea to emit the following meta tag in the
      theme_head() function:
      
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      
      Currently, some themes (and modules!) emit this while others don't.  This
      would also make it possible to change the charset site-wide.
      
      - TODO: now we added support for td.dark and td.light to drupal.css, maybe
      it can be removed from admin.css as well as xtemplate.css?
      05288ac4
  17. 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
  18. Mar 11, 2003
    • Dries Buytaert's avatar
      · 07bb6786
      Dries Buytaert authored
      - Some .htaccess file fixes/improvements.  Thanks Ax.
      07bb6786
  19. Mar 09, 2003
    • Dries Buytaert's avatar
      · f2c914af
      Dries Buytaert authored
      - The .htaccess file will now correct the majority of the external referers
        that still use the old URL scheme!  Thanks Ax and Gerhard for providing a
        better upgrade path.
      f2c914af
  20. Feb 20, 2003
    • Dries Buytaert's avatar
      · a6a3215e
      Dries Buytaert authored
      - Bugfix: made the pager work when clean URLs are enabled.  Patch by Ax.
      a6a3215e
  21. Feb 14, 2003
  22. Feb 13, 2003
  23. Feb 12, 2003
  24. Jan 14, 2003
    • Dries Buytaert's avatar
      · 20e8f9eb
      Dries Buytaert authored
      - Added 'php_value arg_separator.output  "&amp;"' as suggested by Curtis.
      20e8f9eb
  25. Dec 08, 2002
    • Dries Buytaert's avatar
      · 296a01f3
      Dries Buytaert authored
      - Made sure session.cache_limiter is set to "none" as suggested by Moshe
        and Ax.
      296a01f3
  26. Dec 07, 2002
    • Dries Buytaert's avatar
      · 7c187f89
      Dries Buytaert authored
      - Added "short_open_tag 1" to the PHP settings.
      7c187f89
  27. Sep 27, 2002
  28. Jun 10, 2002
  29. May 02, 2002
  30. Feb 17, 2002
  31. Dec 30, 2001
  32. Dec 09, 2001
  33. Nov 24, 2001
  34. Oct 20, 2001
  35. Sep 18, 2001
  36. Jul 14, 2001
  37. May 28, 2001
  38. May 23, 2001
  39. Apr 07, 2001
    • Dries Buytaert's avatar
      · 38806b4a
      Dries Buytaert authored
      - fixed bug in common.inc: throttle()
      - streamlined method invocation in node.inc
      - added node_status() function to modules
      - added NEW (mostly static) page module
      - added NEW settings module
      38806b4a