-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
31 lines (27 loc) · 861 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
function display_items() {
$items = array(
'story editing: missing some vertices on polygons when first loading page',
'Geo-searching should place marker',
"OL interaction: don't know to double-click to end drawing a line or polygon",
"Loosen restrictions on almanc boundaries",
"flash message for story or almanac delete",
"Reorder story create workflow",
"Clarify licensing on story-add"
);
shuffle($items);
?>
<ul>
<?php foreach ($items as $key => $item) : ?>
<li id="ticket-10<?php echo $key; ?>" ft:ticket-id="10<?php echo $key; ?>">
<?php echo $item; ?>
<a href="https://projects.openplans.org/GeoTrac/ticket/85" target="_blank" class="ticket-link" title="Link to ticket">#</a>
</li>
<?php endforeach; ?>
</ul>
<?php
}
function update_ticket() {
echo $_POST['ticket_id'];
}
?>