<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>I can�t see the attendees and the description of a event</title> 
  <pubDate>Thu, 09 Apr 2026 22:17:55 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/3954</link> 
  <atom:link rel="self" type="application/rss+xml" title="I can�t see the attendees and the description of a event" href="https://bugs.horde.org/ticket/3954/rss" /> 
  <description>I can�t see the attendees and the description of a event</description> 
 
   
   
  <item> 
   <title>When I accept and add to my calendar a invitation to a event</title> 
   <description>When I accept and add to my calendar a invitation to a event (not created for my) I  see it in my calendar but I can´t see the description and the list of the attendees of the event. 

I thint is very important to know what other people are invited to the event and the description. Is there any way to see this information?. 

I find it will be interesting to see the  description and the list of attendees in the same way that I can see this information when I display the event that was created for my.</description> 
   <pubDate>Thu, 18 May 2006 20:51:33 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t20368</link> 
  </item> 
   
  <item> 
   <title>This is a duplicate and has already been rejected.</title> 
   <description>This is a duplicate and has already been rejected.</description> 
   <pubDate>Thu, 18 May 2006 20:59:12 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t20383</link> 
  </item> 
   
  <item> 
   <title>Hello!, I have been looking the tickets list and I can&#039;t fou</title> 
   <description>Hello!, I have been looking the tickets list and I can&#039;t found the ticket where this enhancement was rejected. I want to know the reason because this enhancement was rejected.

Thanks in advance</description> 
   <pubDate>Mon, 22 May 2006 10:31:57 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t20479</link> 
  </item> 
   
  <item> 
   <title>Please, what&#039;s the reason about this enhancement was rejecte</title> 
   <description>Please, what&#039;s the reason about this enhancement was rejected? I can&#039;t find any other tiquet related with this.

Thanks.</description> 
   <pubDate>Tue, 29 Aug 2006 09:46:55 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t23593</link> 
  </item> 
   
  <item> 
   <title>Hello

We have the same request from our users. Here is a pr</title> 
   <description>Hello

We have the same request from our users. Here is a proposal for providing this feature.



1) In kronolith/lib/Driver/sql.php

Create a new function for retrieving $attendees from the organizer event.



    function getOrgAttendees($eventUid)

   {

        $query = &quot;SELECT event_attendees&quot; .

           &quot; FROM &quot; . $this-&gt;_params[&#039;table&#039;] . &quot; WHERE event_uid = ?&quot; .

            &quot; AND event_attendees &lt;&gt; &#039;a:0:{}&#039;&quot;;

       $values = array($eventUid);



        $attendees = $this-&gt;_db-&gt;getRow($query, $values, DB_FETCHMODE_ASSOC);

        if (is_a($attendees, &#039;PEAR_Error&#039;)) {

            Horde::logMessage($attendees, __FILE__, __LINE__, PEAR_LOG_ERR);

            return $attendees;

        }

        return unserialize($attendees[&#039;event_attendees&#039;]);

    }





2) In kronolith/lib/Views/Event.php

modify the html() function:

        $status = Kronolith::statusToString($this-&gt;event-&gt;getStatus());

        $attendees = $this-&gt;event-&gt;getAttendees();

      + if (empty($attendees) == true)

      + {

      +    $orgAttendees = $GLOBALS[&#039;kronolith_driver&#039;]-&gt;getOrgAttendees($this-&gt;event-&gt;getUID());

      + }





3) kronolith/templates/view/view.inc

Add some html code for displaying $orgAttendees.



&lt;?php if (!empty($orgAttendees)): ?&gt;

.. 



Thanks for your advise on this feature.

Regars

Patrick

</description> 
   <pubDate>Wed, 14 Oct 2009 15:25:45 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56289</link> 
  </item> 
   
  <item> 
   <title>This patch doesn&#039;t do anything for events received from outs</title> 
   <description>This patch doesn&#039;t do anything for events received from outside of Kronolith, besides the reasoning that the previous ticket was rejected (Ticket: 1059) still stands. Basically, once you have the list of attendees attached to the event, you would be able to modify and send notifications to all attendees... this is not desirable behavior as only the organizer should be able to notify all attendees.</description> 
   <pubDate>Wed, 14 Oct 2009 15:40:23 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56291</link> 
  </item> 
   
  <item> 
   <title>What about just storing the organizer? That seems like relev</title> 
   <description>What about just storing the organizer? That seems like relevant metadata. Actually shouldn&#039;t we already have that for the purposes of sending responses? Displaying that seems right.



Also fwiw, other calendar clients do show the list of attendees; you just can&#039;t change it if you&#039;re not the organizer. Though some systems do allow attendees to invite other attendees.</description> 
   <pubDate>Wed, 14 Oct 2009 15:44:22 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56292</link> 
  </item> 
   
  <item> 
   <title>In that case, how about checking for the organizer !== curre</title> 
   <description>In that case, how about checking for the organizer !== current user and then locking the attendee list and disallow the notifications?</description> 
   <pubDate>Wed, 14 Oct 2009 15:49:05 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56293</link> 
  </item> 
   
  <item> 
   <title>&gt; In that case, how about checking for the organizer !== cur</title> 
   <description>&gt; In that case, how about checking for the organizer !== current user 

&gt; and then locking the attendee list and disallow the notifications?

This has already been accepted in another ticket (can&#039;t find it right now), and is also on my todo list.</description> 
   <pubDate>Wed, 14 Oct 2009 16:40:30 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56295</link> 
  </item> 
   
  <item> 
   <title>See also related tickets:

Ticket: 3965

Ticket: 6269

Ticke</title> 
   <description>See also related tickets:

Ticket: 3965

Ticket: 6269

Tickey: 8396</description> 
   <pubDate>Wed, 14 Oct 2009 17:30:52 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56300</link> 
  </item> 
   
  <item> 
   <title>&gt; See also related tickets:

&gt; Ticket: 3965

&gt; Ticket: 6269
</title> 
   <description>&gt; See also related tickets:

&gt; Ticket: 3965

&gt; Ticket: 6269

&gt; Tickey: 8396



Hello

User who has accepted an invitation wants to see others attendees and if they have accepted or declined the invitation (&#039;don&#039;t want to go to this meeting if boss declined&#039;). So, in my point of view, attendees list should no be duplicated into all the attendee events, but should stay unique in the organizer event. Regards

Patrick</description> 
   <pubDate>Fri, 16 Oct 2009 07:38:07 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56327</link> 
  </item> 
   
  <item> 
   <title>&gt; User who has accepted an invitation wants to see others at</title> 
   <description>&gt; User who has accepted an invitation wants to see others attendees and 

&gt; if they have accepted or declined the invitation (&#039;don&#039;t want to go 

&gt; to this meeting if boss declined&#039;). So, in my point of view, 

&gt; attendees list should no be duplicated into all the attendee events, 

&gt; but should stay unique in the organizer event.



How would the user be able to see the attendee list if he/she doesn&#039;t have access to the organizer&#039;s calendar?

</description> 
   <pubDate>Fri, 16 Oct 2009 18:27:59 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56338</link> 
  </item> 
   
  <item> 
   <title>&gt; How would the user be able to see the attendee list if he/</title> 
   <description>&gt; How would the user be able to see the attendee list if he/she doesn&#039;t 

&gt; have access to the organizer&#039;s calendar?

&gt;

Hello

Our proposal was to create a new driver function which retrieves the attendees from the organizer calendar by using the event_uid (which is common between the organizer and the attendees).

Regards

Patrick

</description> 
   <pubDate>Mon, 19 Oct 2009 08:33:32 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56340</link> 
  </item> 
   
  <item> 
   <title>&gt; Our proposal was to create a new driver function which ret</title> 
   <description>&gt; Our proposal was to create a new driver function which retrieves the 

&gt; attendees from the organizer calendar by using the event_uid (which 

&gt; is common between the organizer and the attendees).

We don&#039;t have access to the original event unless it happens to be on the same Horde server.</description> 
   <pubDate>Mon, 19 Oct 2009 08:46:33 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56341</link> 
  </item> 
   
  <item> 
   <title>&gt; We don&#039;t have access to the original event unless it happe</title> 
   <description>&gt; We don&#039;t have access to the original event unless it happens to be on 
&gt; the same Horde server.

Hello
Even with this limitation, it seems valuable that attendees belonging to the same Horde organization than the organizer, can see the others attendees of the meeting. This feature covers typical internal-company meeting scenarios.
Sorry to comeback on this topic, but we are really looking for a solution.
Regards
Patrick
</description> 
   <pubDate>Tue, 10 Nov 2009 16:06:55 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56636</link> 
  </item> 
   
  <item> 
   <title>&gt;&gt; We don&#039;t have access to the original event unless it happ</title> 
   <description>&gt;&gt; We don&#039;t have access to the original event unless it happens to be on
&gt;&gt; the same Horde server.
&gt; Even with this limitation, it seems valuable that attendees belonging 
&gt; to the same Horde organization than the organizer, can see the others 
&gt; attendees of the meeting. This feature covers typical 
&gt; internal-company meeting scenarios.

+1

Our users are asking for the same feature : who&#039;s part of the meeting and have they accepted.

</description> 
   <pubDate>Tue, 10 Nov 2009 16:37:09 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/3954#t56640</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
