summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatrak <>2001-07-17 20:08:06 +0000
committernatrak <>2001-07-17 20:08:06 +0000
commitbc6e55b24dd00ea3fd08884aca7ebfb828d93c84 (patch)
treedf26d645be5d81c9f75648188f86361af18d4447
parent6fdef1725780711d1f52a9943e0048f291213e0c (diff)
downloadbrdo-bc6e55b24dd00ea3fd08884aca7ebfb828d93c84.tar.gz
brdo-bc6e55b24dd00ea3fd08884aca7ebfb828d93c84.tar.bz2
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.
-rw-r--r--updates/2.00-to-x.xx.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/updates/2.00-to-x.xx.sql b/updates/2.00-to-x.xx.sql
index 27c2fec54..2d101152c 100644
--- a/updates/2.00-to-x.xx.sql
+++ b/updates/2.00-to-x.xx.sql
@@ -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;