page.module

- added a links option so pages can be displayed on the links of the site in an
  easy way. (Requires an SQL update.)
- made HTML and text type pages be $theme->box()ed again.
- made the page body hidden in a comment during editing, in case things
  crash you should still be able to retrieve your code. Will keep working on a
  better solution.

node.module
- made all node types be listed in the node listings.
3-00
natrak 2001-07-17 20:08:06 +00:00
parent 6fdef17257
commit bc6e55b24d
1 changed files with 2 additions and 0 deletions

View File

@ -332,3 +332,5 @@ ALTER TABLE site CHANGE url link varchar(255) DEFAULT '' NOT NULL;
ALTER TABLE site ADD feed varchar(255) DEFAULT '' NOT NULL;
#17/06/01
ALTER TABLE page ADD link varchar(128) DEFAULT '' NOT NULL AFTER nid;