Skip to content
  1. Dec 08, 2002
    • Dries Buytaert's avatar
      · 05ca487d
      Dries Buytaert authored
      - Made sure session.cache_limiter is set to "none" as suggested by Moshe
        and Ax.
      05ca487d
  2. Dec 07, 2002
    • Dries Buytaert's avatar
      · b520de47
      Dries Buytaert authored
      - Added "short_open_tag 1" to the PHP settings.
      b520de47
  3. Dec 02, 2002
    • Dries Buytaert's avatar
      · 8a91f1be
      Dries Buytaert authored
      - Added some extra information about PHP settings.
      8a91f1be
  4. Nov 29, 2002
    • Dries Buytaert's avatar
      · 06081084
      Dries Buytaert authored
      - Patch by Jeremy to fix a module loading bug:
      
          - module.inc:
             + added call to _init for all modules
      
          - statistics.module:
             + added statistics_init()
             + moved all global actions into statistics_init()
      06081084
    • Dries Buytaert's avatar
      · 6c862208
      Dries Buytaert authored
      - Fixed small glitch in drupal_goto(): somethimes a "&" got appended.  Patch
        by Marco.
      6c862208
  5. Nov 26, 2002
    • Dries Buytaert's avatar
      · 51778ef1
      Dries Buytaert authored
      - Applied Ax's pager patch: includes documentation (rewrote it somewhat) and two
        bugfixes; one that makes taxanomy based paging work (eg. index.php?and=2,3)
        and one that kills a warning when the query returns no records.
      51778ef1
    • Dries Buytaert's avatar
      · 4a723b90
      Dries Buytaert authored
      - Added some comments/explanation wrt to the "$db_url" settings; this seemed
        to cause problems/confusion.
      4a723b90
  6. Nov 21, 2002
    • Dries Buytaert's avatar
      · 4f94488b
      Dries Buytaert authored
      - SID will now only be appended when session.use_trans_sid is set.  Patch
        by Kjartan.
      4f94488b
  7. Nov 18, 2002
    • Dries Buytaert's avatar
      · 36cb350e
      Dries Buytaert authored
      - Don't display "1" when there is only one page.
      36cb350e
  8. Nov 17, 2002
  9. Nov 16, 2002
  10. Nov 10, 2002
    • Dries Buytaert's avatar
      · 99fd26db
      Dries Buytaert authored
      - Small cosmetic change.  Patch by Natrak.
      99fd26db
  11. Nov 09, 2002
    • Dries Buytaert's avatar
      · 6ba38a7e
      Dries Buytaert authored
      - Fixed db_query_range() in PEAR database abstraction layer.  Patch by James.
      6ba38a7e
    • Dries Buytaert's avatar
      · 2fc257a0
      Dries Buytaert authored
      - Oops.  Braino.
      2fc257a0
    • Dries Buytaert's avatar
      · 3dd7d9b4
      Dries Buytaert authored
      - Oops.  The db_query_range() query got added twice.
      3dd7d9b4
    • Dries Buytaert's avatar
      · 6d1ffea4
      Dries Buytaert authored
      - Added check to see whether $items is initiliazed.  Thanks James.
      6d1ffea4
    • Dries Buytaert's avatar
      · c93ab2a2
      Dries Buytaert authored
      - Added a db_query_range function.  Patch by Natrak, slightly modified.
      c93ab2a2
    • Dries Buytaert's avatar
      · a6a47a32
      Dries Buytaert authored
      - Applied Moshe's "theme head" patch:
      
        "This patch to theme.inc adds the ability for modules to insert HTML
         into the <HEAD> section of all web pages. The additional modules in
         this directory [ed: blog.module] demonstate possible uses for the
         new _head() hook."
      a6a47a32
    • Dries Buytaert's avatar
      · 562df8fe
      Dries Buytaert authored
      * Added Jeremy's pager:
      
       "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.
      562df8fe
  12. Nov 08, 2002
    • Dries Buytaert's avatar
      · b3abbc4b
      Dries Buytaert authored
      Patch by Natrak:
      
      - Modules and themes now use the same functions to find and administer
        files.
      - Modules can now be placed in sub-directories.
      - Theme descriptions can no longer be edited. This will be handled by
        Dries' theme_conf patch.
      - Update required to keep old modules enabled.
      b3abbc4b
  13. Nov 06, 2002
  14. Oct 26, 2002
    • Dries Buytaert's avatar
      · 8d103a08
      Dries Buytaert authored
      - Committed Marco's block rewrite:
      
         + 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
               }
             }
      8d103a08
  15. Oct 24, 2002
    • Dries Buytaert's avatar
      · 2512ce76
      Dries Buytaert authored
      - Killed a warning.  Reported by ax.
      2512ce76
  16. Oct 23, 2002
  17. Oct 22, 2002
    • Dries Buytaert's avatar
      · 66c5b707
      Dries Buytaert authored
      - Wrapped some hardcoded colors in "theme_invoke()"s; we can still create
        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.
      66c5b707
  18. Oct 20, 2002
  19. Oct 17, 2002
  20. Oct 13, 2002
    • Dries Buytaert's avatar
      · fcae7030
      Dries Buytaert authored
      - Committed Jeremy's incarnation of the statistics module.  Last minutes
        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".
      fcae7030
  21. Oct 04, 2002
  22. Sep 30, 2002
  23. Sep 27, 2002
  24. Sep 15, 2002
    • Dries Buytaert's avatar
      · 92326261
      Dries Buytaert authored
      - Commited Marco's new comment module and forum module!!!
      92326261
  25. Sep 11, 2002
  26. Sep 08, 2002
  27. Aug 26, 2002
    • Dries Buytaert's avatar
      · 547ac22a
      Dries Buytaert authored
      - Fixed function prototype of db_error().  Patch by James.
      
        One-liners are great! :)
      547ac22a
  28. Aug 20, 2002
    • Dries Buytaert's avatar
      · bfe5b85d
      Dries Buytaert authored
      - Applied a (modified) version of Marco's SQL sequence patch.
      bfe5b85d
  29. Aug 15, 2002
    • Dries Buytaert's avatar
      · d102bf73
      Dries Buytaert authored
      - Reverted module.inc to the old module_invoke() function.
      d102bf73