Opened 11 months ago

Closed 11 months ago

Last modified 11 months ago

#1488564 closed Bug Patches (invalid)

bug in plugins/calendar/SQL/postgres.sql

Reported by: cyndo Owned by: rosali
Priority: 5 Milestone: later
Component: Plugins Version: 0.8-rc
Severity: normal Keywords: calendar postgres.sql
Cc:

Description

This report refers to:

Error Message (log):

[2012-Jul-13 14:09:17 +0000]: DB Error: MDB2 Error: no such field Query: _doQuery: [Error message: Could not execute statement] [Last executed query: UPDATE "events"  SET "del"=2, "timestamp"='2012-07-13 14:09:17' WHERE "user_id"='1' AND "url"='https://my-davical-server.example.org/caldav.php/my-username/home'] [Native message: ERROR:  column "url" does not exist ZEILE 3:                 WHERE "user_id"='1' AND "url"='https://davic... ^]  in /usr/share/roundcube/program/include/rcube_mdb2.php on line 722 (POST /roundcube/?_task=dummy&_action=plugin.getSettings?_task=&_action=)

This can be fixed with the following patch:

--- postgres.sql        2012-07-12 19:57:54.000000000 +0000
+++ postgres.sql-fixed     2012-07-13 14:16:10.000000000 +0000
@@ -21,7 +21,7 @@
    categories varchar(255) NOT NULL DEFAULT '',
    "group" text,
    caldav text,
-   all_day integer NOT NULL DEFAULT 0,
+   url text,
    "timestamp" text,
    del smallint NOT NULL DEFAULT 0,
    reminder integer DEFAULT NULL,

Regards

Frank

Change History (3)

comment:1 Changed 11 months ago by thomasb

  • Owner set to rosali

comment:2 Changed 11 months ago by thomasb

  • Resolution set to invalid
  • Status changed from new to closed

comment:3 Changed 11 months ago by rosali

No need to open a ticket. I noticed it and will fix it. Thanks.

Note: See TracTickets for help on using tickets.