Remove offending extra comma
This commit is contained in:
parent
91b536b868
commit
b6d2d96d11
|
@ -117,8 +117,9 @@ xhtmlHeaders(__FILE__, translate('Frame').' - '.$Event->Id().' - '.$Frame->Frame
|
||||||
<?php
|
<?php
|
||||||
if ($imageData['hasAnalImage']) {
|
if ($imageData['hasAnalImage']) {
|
||||||
echo sprintf('<a href="?view=frame&eid=%d&fid=%d&scale=%d&show=%s" title="Click to display frame %s analysis">',
|
echo sprintf('<a href="?view=frame&eid=%d&fid=%d&scale=%d&show=%s" title="Click to display frame %s analysis">',
|
||||||
$Event->Id(), $Frame->FrameId(), $scale, ( $show=='anal'?'capt':'anal' ),
|
$Event->Id(), $Frame->FrameId(), $scale,
|
||||||
( $show=='anal'?'without':'with' ),
|
($show=='anal'?'capt':'anal'),
|
||||||
|
($show=='anal'?'without':'with')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue