summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2010-10-17 00:09:27 +0000
committerivan <ivan>2010-10-17 00:09:27 +0000
commit9a98d39e3ce40c1f2c324991e8ad469271093fb5 (patch)
treee1c53aed14c08b4d2c7bcadc3969cf3fd1b83fb0 /httemplate
parentd74ab480f4ee20f8a9cf230e53d1f5a210badf0f (diff)
show eventpart in clone dropdown
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/browse/part_event.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/browse/part_event.html b/httemplate/browse/part_event.html
index 3d7c245ac..f68f06b9f 100644
--- a/httemplate/browse/part_event.html
+++ b/httemplate/browse/part_event.html
@@ -150,7 +150,7 @@ my $html_init =
foreach my $part_event ( qsearch('part_event', {'diabled'=>''}) ) {
$html_init .= '<OPTION VALUE="'. $part_event->eventpart. '">'.
- $part_event->event. '</OPTION>';
+ $part_event->eventpart. ': '. $part_event->event. '</OPTION>';
}
$html_init .= '</SELECT><INPUT TYPE="submit" VALUE="Clone existing event">'.