drupal/includes
Dries Buytaert 8d103a0898 - 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
         }
       }
2002-10-26 15:17:26 +00:00
..
common.inc - Committed Marco's block rewrite: 2002-10-26 15:17:26 +00:00
conf.php This is a major change to the system, needs more testing! 2002-04-14 19:34:04 +00:00
database.inc - node.module: 2001-11-05 22:59:11 +00:00
database.mysql.inc - Killed a warning. Reported by ax. 2002-10-24 17:44:39 +00:00
database.pear.inc - Committed Jeremy's incarnation of the statistics module. Last minutes 2002-10-13 12:00:50 +00:00
module.inc - Committed Marco's block rewrite: 2002-10-26 15:17:26 +00:00
theme.inc - Committed Marco's block rewrite: 2002-10-26 15:17:26 +00:00
xmlrpc.inc - applying patches from Axel Kollmorgen. See 2002-02-17 13:04:50 +00:00
xmlrpcs.inc - Upgraded the XML-RPC libraries to the latest version as suggested by 2001-12-05 18:37:44 +00:00