diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-06-28 08:43:01 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-06-28 08:43:01 +0200 |
commit | 24900ef2773fdcd3afc1f7598e2d2ab99e138d71 (patch) | |
tree | b182a1abe2064fa256480666942161ddd4a56618 | |
parent | 04bf875418964c857234e85a11464857c88afb95 (diff) |
Fixed calendar/date bug in praxisd.
-rw-r--r-- | server/src/praxisd.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/praxisd.cc b/server/src/praxisd.cc index d1ac4e5..c198051 100644 --- a/server/src/praxisd.cc +++ b/server/src/praxisd.cc @@ -816,7 +816,7 @@ public: if(name == "aftale") { Praxisd::aftale_t a; if(attr.find("date") != attr.end()) a.date = attr["date"]; - if(attr.find("calendar") != attr.end()) a.date = attr["calendar"]; + if(attr.find("calendar") != attr.end()) a.calendar = attr["calendar"]; div.push_back(a); } DODIVTAG(cpr); |