From: znek Date: Mon, 13 Dec 2004 13:54:01 +0000 (+0000) Subject: bugfix in script X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a0794d62331cfffc5ca60d47203e666860a9fe7;p=scalable-opengroupware.org bugfix in script git-svn-id: http://svn.opengroupware.org/SOGo/trunk@472 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/OGoContentStore/ChangeLog b/OGoContentStore/ChangeLog index 4b2cdc35..a49c40a7 100644 --- a/OGoContentStore/ChangeLog +++ b/OGoContentStore/ChangeLog @@ -1,3 +1,9 @@ +2004-12-13 Marcus Mueller + + * sql/generate-folderinfo-sql-for-user.sh: fixed critical error in + Contacts folder_info, type was 'Appointment' but MUST be 'Contact' + (v0.9.16) + 2004-12-10 Marcus Mueller * sql: updated all generation scripts to the latest version (v0.9.15) diff --git a/OGoContentStore/Version b/OGoContentStore/Version index 3b1ed5fd..c585d0f5 100644 --- a/OGoContentStore/Version +++ b/OGoContentStore/Version @@ -2,7 +2,7 @@ MAJOR_VERSION=0 MINOR_VERSION=9 -SUBMINOR_VERSION:=15 +SUBMINOR_VERSION:=16 # v0.9.11 requires libFoundation v1.0.63 # v0.9.11 requires libNGExtensions v4.3.125 diff --git a/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh b/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh index c483679a..5ad0df65 100755 --- a/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh +++ b/OGoContentStore/sql/generate-folderinfo-sql-for-users.sh @@ -62,7 +62,7 @@ VALUES 'Contacts', 'http://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME}/SOGo_${USER_TABLE}_contacts', 'http://${DB_USER}:${DB_PASS}@${DB_HOST}:${DB_PORT}/${DB_NAME}/SOGo_${USER_TABLE}_contacts_quick', - 'Appointment' ); + 'Contact' ); DROP TABLE SOGo_${USER_TABLE}_privcal_quick; DROP TABLE SOGo_${USER_TABLE}_privcal;