Skip to content
  1. Dec 07, 2002
    • Dries Buytaert's avatar
      · 286871d6
      Dries Buytaert authored
      - Some changes to the update.php script: revised the instructions a bit,
        added some logic and a link to "upgrade 4.0.x to 4.1.x", etc.
      286871d6
  2. Nov 24, 2002
    • Dries Buytaert's avatar
      · 062e7d7c
      Dries Buytaert authored
      - Added missing query to change the session field from VARCHAR(32) to TEXT.
        Reported by Bert Garcia.
      062e7d7c
  3. Nov 20, 2002
    • Dries Buytaert's avatar
      · 56d72a91
      Dries Buytaert authored
      - Added Stefan's page module improvements.
      
        [NOTE: the PostgreSQL database scheme needs updating.]
      56d72a91
  4. 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
  5. Oct 26, 2002
    • Kjartan Mannes's avatar
      - blocks != boxes. Sorry :) · acd0cb06
      Kjartan Mannes authored
      acd0cb06
    • Kjartan Mannes's avatar
    • Kjartan Mannes's avatar
      470d763b
    • 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
  6. Oct 17, 2002
  7. Oct 15, 2002
  8. 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
  9. Sep 17, 2002
    • Dries Buytaert's avatar
      · 85c6e905
      Dries Buytaert authored
      - Made sure the sequence table is properly initialized for comments.
      85c6e905
  10. Sep 15, 2002
    • Dries Buytaert's avatar
      · 92326261
      Dries Buytaert authored
      - Commited Marco's new comment module and forum module!!!
      92326261
  11. Aug 26, 2002
    • Dries Buytaert's avatar
      · a28f8180
      Dries Buytaert authored
      - Changed "$watchdog->message" from type "varchar(255)" to type "text".
        Patch by James.  For sake of consistency, I updated the MySQL scheme
        and added a new update entry to "update.php".
      a28f8180
  12. Aug 20, 2002
    • Dries Buytaert's avatar
      · bfe5b85d
      Dries Buytaert authored
      - Applied a (modified) version of Marco's SQL sequence patch.
      bfe5b85d
  13. Aug 16, 2002
    • Dries Buytaert's avatar
      · e04f6d23
      Dries Buytaert authored
      - Made the rating module and its SQL table ASNI compliant.  Patch by jaa.
      e04f6d23
  14. Aug 11, 2002
    • Dries Buytaert's avatar
      · e0357857
      Dries Buytaert authored
      - Added indices for the poll module.  Patch by Marco.
      e0357857
  15. Jul 31, 2002
  16. Jul 07, 2002
    • Dries Buytaert's avatar
      · e1e75f5b
      Dries Buytaert authored
      - Update the existing variables.
      e1e75f5b
  17. Jun 23, 2002
    • Dries Buytaert's avatar
      · 39373da7
      Dries Buytaert authored
      - Added some indices.
      39373da7
  18. Jun 15, 2002
  19. Jun 08, 2002
    • Dries Buytaert's avatar
      · 291d119b
      Dries Buytaert authored
      - Removed non-existing theme from both update.php and database.mysql.  Patch
        by Marco.
      291d119b
  20. Jun 06, 2002
    • Dries Buytaert's avatar
      · 68129fd5
      Dries Buytaert authored
      - Changed some "default NULL"s to "default NOT NULL"s as this only works on
        recent MySQL versions.  I included the diffs for review.
      
      update.php:
      -  update_sql("CREATE TABLE search_index (word varchar(50) default NULL, lno in
      +  update_sql("CREATE TABLE search_index (word varchar(50) default NOT NULL, ln
      
      database.mysql:
      -  word varchar(50) default NULL,
      -  lno int(10) unsigned default NULL,
      -  type varchar(16) default NULL,
      -  count int(10) unsigned default NULL,
      + word varchar(50) NOT NULL,
      + lno int(10) unsigned NOT NULL,
      + type varchar(16) default NULL,
      + count int(10) unsigned default NULL,
      68129fd5
  21. Jun 01, 2002
    • Kjartan Mannes's avatar
      - adding descriptions to modules (thanks Joe + Scott). · 4a28077f
      Kjartan Mannes authored
      - 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.
      4a28077f
  22. May 20, 2002
    • Kjartan Mannes's avatar
      - tweaked password changes. · 367ae7a6
      Kjartan Mannes authored
      - changed the meta -> taxo to append terms instead of overwriting.
      - added more warnings to file.
      367ae7a6
    • Dries Buytaert's avatar
      · f3c87571
      Dries Buytaert authored
      - Ran the code through 'scripts/code-clean.sh': removed trailing whitespace
        (and possibly tabs).
      f3c87571
  23. May 19, 2002
  24. May 17, 2002
  25. May 16, 2002
  26. May 15, 2002
  27. May 13, 2002
  28. May 11, 2002
  29. May 02, 2002
  30. May 01, 2002
  31. Apr 29, 2002
  32. Apr 28, 2002
  33. Apr 27, 2002