summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-05-07 23:28:54 +0000
committerMike Frysinger <vapier@gentoo.org>2005-05-07 23:28:54 +0000
commit64a027c70c41d2efacdc3e1544e590309f826d77 (patch)
tree8c03010a81ae34734abfbfd9d2fc064e14ff97a6 /www-apps/horde/files
parentold (diff)
downloadhistorical-64a027c70c41d2efacdc3e1544e590309f826d77.tar.gz
historical-64a027c70c41d2efacdc3e1544e590309f826d77.tar.bz2
historical-64a027c70c41d2efacdc3e1544e590309f826d77.zip
Add patch from upstream to fix Free/Busy information #89227 by Jeffrey Crawford.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'www-apps/horde/files')
-rw-r--r--www-apps/horde/files/digest-horde-3.0.4-r11
-rw-r--r--www-apps/horde/files/horde-3.0.4-freebusy.patch16
2 files changed, 17 insertions, 0 deletions
diff --git a/www-apps/horde/files/digest-horde-3.0.4-r1 b/www-apps/horde/files/digest-horde-3.0.4-r1
new file mode 100644
index 000000000000..387de93d489d
--- /dev/null
+++ b/www-apps/horde/files/digest-horde-3.0.4-r1
@@ -0,0 +1 @@
+MD5 e2221d409ba1c8841ce4ecee981d7b61 horde-3.0.4.tar.gz 3378143
diff --git a/www-apps/horde/files/horde-3.0.4-freebusy.patch b/www-apps/horde/files/horde-3.0.4-freebusy.patch
new file mode 100644
index 000000000000..876e5a069fb2
--- /dev/null
+++ b/www-apps/horde/files/horde-3.0.4-freebusy.patch
@@ -0,0 +1,16 @@
+===================================================================
+RCS file: /horde/cvs/framework/iCalendar/iCalendar/vfreebusy.php,v
+retrieving revision 1.19
+retrieving revision 1.20
+diff -p --unified=3 -r1.19 -r1.20
+--- lib/Horde/iCalendar/vfreebusy.php 2005/04/08 14:08:47 1.19
++++ lib/Horde/iCalendar/vfreebusy.php 2005/04/08 16:52:25 1.20
+@@ -34,7 +34,7 @@ class Horde_iCalendar_vfreebusy extends
+ // Do something with all the busy periods.
+ foreach ($this->_attributes as $key => $attribute) {
+ if ($attribute['name'] == 'FREEBUSY') {
+- foreach ($attribute['value'] as $value) {
++ foreach ($attribute['values'] as $value) {
+ if (array_key_exists('duration', $attribute['value'])) {
+ $this->addBusyPeriod('BUSY', $value['start'], null, $value['duration']);
+ } else {