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

@ -252,12 +252,11 @@
$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 serial,
note_owner int,
note_date int,
note_content text
)";
$db->query($sql);
$currentver = "0.9.3";