phpgroupware-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-tracker] [ 100748 ] Show user name in conflict list


From: nobody
Subject: [Phpgroupware-tracker] [ 100748 ] Show user name in conflict list
Date: Tue, 16 Apr 2002 06:39:20 -0400

Support Request #100748, was updated on 2002-Apr-16 06:39
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100748&group_id=509

Category: Feature Request
Status: Open
Priority: 5
Summary: Show user name in conflict list

By: info
Date: 2002-Apr-16 06:39

Message:
Logged In: NO 
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0)

When you try to create an appointment with many other 
users there may be conflicts. 
When a list of conflicts is shown, you only see the 
title of the events. If you want to know, who is the 
owner of this entry you've got to follow the link and 
if the entry is a private one you can't know who is 
the owner.

I found the following solution :

- I edited class.uicalendar.inc.php and modified the 
function overlap.
- I replaced in this function :

$overlap = '';
for($i=0;$i<count($overlapping_events);$i++)
{
        $overlap .= '<li>'.$this->link_to_entry($this-
>bo->read_entry($overlapping_events
[$i]),$month,$mday,$year);
}

by :

$overlap = '';
for($i=0;$i<count($overlapping_events);$i++)
{
        $overlap_event_for = $this->bo->read_entry
($overlapping_events[$i]);
        $overlap .= '<li>'.$GLOBALS['phpgw']->common-
>grab_owner_name($overlap_event_for['owner']).$this-
>link_to_entry($overlap_event_for,$month,$mday,$year);
}

With this modification the owner's name is shown 
before the title of the entry

Let me know if it helps

Nicolas Reignier

----------------------------------------------------------------------
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100748&group_id=509



reply via email to

[Prev in Thread] Current Thread [Next in Thread]