spaces and quotes
parent
3a409b26aa
commit
aa8ac9c31c
|
@ -18,11 +18,11 @@
|
|||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
//
|
||||
|
||||
if ( !canView( 'Events' ) ) {
|
||||
if ( !canView('Events') ) {
|
||||
$view = 'error';
|
||||
return;
|
||||
}
|
||||
require_once( 'includes/Frame.php' );
|
||||
require_once('includes/Frame.php');
|
||||
$Event = new Event( $_REQUEST['eid'] );
|
||||
|
||||
$sql = 'SELECT *, unix_timestamp( TimeStamp ) AS UnixTimeStamp FROM Frames WHERE EventID = ? ORDER BY FrameId';
|
||||
|
@ -30,7 +30,7 @@ $frames = dbFetchAll( $sql, NULL, array( $_REQUEST['eid'] ) );
|
|||
|
||||
$focusWindow = true;
|
||||
|
||||
xhtmlHeaders(__FILE__, translate('Frames')." - ".$Event->Id() );
|
||||
xhtmlHeaders(__FILE__, translate('Frames').' - '.$Event->Id() );
|
||||
?>
|
||||
<body>
|
||||
<div id="page">
|
||||
|
|
Loading…
Reference in New Issue