Remove offending extra comma
This commit is contained in:
parent
91b536b868
commit
b6d2d96d11
|
@ -115,10 +115,11 @@ xhtmlHeaders(__FILE__, translate('Frame').' - '.$Event->Id().' - '.$Frame->Frame
|
|||
<div>
|
||||
<p id="image">
|
||||
<?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">',
|
||||
$Event->Id(), $Frame->FrameId(), $scale, ( $show=='anal'?'capt':'anal' ),
|
||||
( $show=='anal'?'without':'with' ),
|
||||
$Event->Id(), $Frame->FrameId(), $scale,
|
||||
($show=='anal'?'capt':'anal'),
|
||||
($show=='anal'?'without':'with')
|
||||
);
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue