Closed
Bug 394174
Opened 18 years ago
Closed 18 years ago
Attendees list is blank in new event summary dialog
Categories
(Calendar :: General, defect)
Calendar
General
Tracking
(Not tracked)
VERIFIED
FIXED
0.7
People
(Reporter: omar.bajraszewski, Assigned: michael.buettner)
Details
Attachments
(1 file)
2.65 KB,
patch
|
dbo
:
review+
|
Details | Diff | Splinter Review |
STEPS TO REPRODUCE:
===================
- Subscribe to http://sd-calendar.staroffice.de/
- Mark the calendar as a read only
- double click on event with added attendees
RESULT:
=======
- Attendees list is blank in new event summary dialog
EXPECTED RESULT:
================
- Attendees are shown in new event summary dialog
REPRODUCIBLE:
=============
- always
Reporter | ||
Comment 1•18 years ago
|
||
Event summary dialog is a new enhancement and doesn't work as expected---> requesting blocking 0.7
Flags: blocking-calendar0.7?
Comment 2•18 years ago
|
||
I can confirm with an event in read-only storage calendar. The Console shows:
Error: organizer is not defined
Source File: chrome://calendar/content/calendar-summary-dialog.js
Line: 264
Component: Provider: WCAP → General
OS: Windows XP → Windows 2000
QA Contact: wcap-provider → general
Assignee | ||
Updated•18 years ago
|
Assignee: nobody → michael.buettner
Assignee | ||
Updated•18 years ago
|
Status: NEW → ASSIGNED
OS: Windows 2000 → All
Hardware: PC → All
Assignee | ||
Comment 4•18 years ago
|
||
Inadvertent typo. Admittedly, I'm really missing a decent compiler that bails out under these circumstances. Anyway, I also took the liberty to correct the wrong handling of the 'mailto' prefix which I came across.
Attachment #279074 -
Flags: review?(daniel.boelzle)
Comment 5•18 years ago
|
||
Comment on attachment 279074 [details] [diff] [review]
patch v1
>+ } else {
>+ email = email;
remove that else-block
>+ if (email && email.length) {
>+ if (re.test(email)) {
>+ email = RegExp.$1;
>+ } else {
>+ email = email;
>+ }
> }
just
if (email && re.test(email)) {
email = RegExp.$1;
}
here
btw: RegExp.$1 is deprecated, use exec()
r=dbo
Attachment #279074 -
Flags: review?(daniel.boelzle) → review+
Assignee | ||
Comment 6•18 years ago
|
||
patch checked in on trunk and MOZILLA_1_8_BRANCH
-> FIXED
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Updated•18 years ago
|
Target Milestone: --- → 0.7
Reporter | ||
Comment 8•18 years ago
|
||
Verified with Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.7pre) Gecko/20070906 Calendar/0.7pre
You need to log in
before you can comment on or make changes to this bug.
Description
•