Fixed a few white space errors header() and setup_header(), fixed the notes tables and reworked the default applications so it will be easier to make the phpgroupware and phpgroupware plus packages

This commit is contained in:
jengo
2000-11-18 01:11:48 +00:00
parent f63c9f36fa
commit e35f536961
9 changed files with 67 additions and 52 deletions

View File

@ -280,14 +280,13 @@
$db->query($sql);
$sql = "CREATE TABLE notes (
accountid int(11),
date int(11),
note text,
noteid int(20) auto_increment,
PRIMARY KEY (noteid)
)";
note_id int(20) NOT NULL auto_increment,
note_owner int(11),
note_date int(11),
note_content text,
PRIMARY KEY (note_id)
)";
$db->query($sql);
$db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('notes', 'Notes', 0, 13, NULL, '".$phpgw_info["server"]["version"]."')");
$currentver = "0.9.3";
update_version_table();