Skip to content

Commit 45d7c55

Browse files
committedMay 27, 2012
Do not show Tickets in the schedule screen when they are either in the Trash or in the Clipboard. Fixes bug #12345.

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎docs/changelog/7.x.x.txt

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- fixed #12349: Friends invitation error
1616
- fixed #12353: Dataform List mode
1717
- fixed #12364: Site export loses session info
18+
- fixed #12345: tickets in trash still show up
1819

1920
7.10.24
2021
- fixed #12318: asset error causes asset manager to fail

‎lib/WebGUI/Asset/Wobject/EventManagementSystem.pm

+1
Original file line numberDiff line numberDiff line change
@@ -1792,6 +1792,7 @@ sub www_getScheduleDataJSON {
17921792
and EMSTicket.location in ( } .
17931793
join( ',', (map { $db->quote($_) } (@ticketLocations))) .
17941794
q{ )
1795+
and asset.state='published'
17951796
and assetData.revisionDate = (
17961797
select max(revisionDate)
17971798
from assetData

0 commit comments

Comments
 (0)
Please sign in to comment.