diff --git a/web/skins/classic/views/event.php b/web/skins/classic/views/event.php
index 338cda790..3016e050c 100644
--- a/web/skins/classic/views/event.php
+++ b/web/skins/classic/views/event.php
@@ -10,55 +10,55 @@
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
if ( !canView( 'Events' ) )
{
- $view = "error";
- return;
+ $view = "error";
+ return;
}
$eid = validInt( $_REQUEST['eid'] );
$fid = !empty($_REQUEST['fid'])?validInt($_REQUEST['fid']):1;
if ( $user['MonitorIds'] )
- $midSql = " and MonitorId in (".join( ",", preg_split( '/["\'\s]*,["\'\s]*/', dbEscape($user['MonitorIds']) ) ).")";
+ $midSql = " and MonitorId in (".join( ",", preg_split( '/["\'\s]*,["\'\s]*/', dbEscape($user['MonitorIds']) ) ).")";
else
- $midSql = '';
+ $midSql = '';
$sql = 'SELECT E.*,M.Name AS MonitorName,M.DefaultRate,M.DefaultScale FROM Events AS E INNER JOIN Monitors AS M ON E.MonitorId = M.Id WHERE E.Id = ?'.$midSql;
$event = dbFetchOne( $sql, NULL, array($eid) );
if ( isset( $_REQUEST['rate'] ) )
- $rate = validInt($_REQUEST['rate']);
+ $rate = validInt($_REQUEST['rate']);
else
- $rate = reScale( RATE_BASE, $event['DefaultRate'], ZM_WEB_DEFAULT_RATE );
+ $rate = reScale( RATE_BASE, $event['DefaultRate'], ZM_WEB_DEFAULT_RATE );
if ( isset( $_REQUEST['scale'] ) )
- $scale = validInt($_REQUEST['scale']);
+ $scale = validInt($_REQUEST['scale']);
else
- $scale = reScale( SCALE_BASE, $event['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
+ $scale = reScale( SCALE_BASE, $event['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
$replayModes = array(
- 'single' => $SLANG['ReplaySingle'],
- 'all' => $SLANG['ReplayAll'],
- 'gapless' => $SLANG['ReplayGapless'],
+ 'single' => $SLANG['ReplaySingle'],
+ 'all' => $SLANG['ReplayAll'],
+ 'gapless' => $SLANG['ReplayGapless'],
);
if ( isset( $_REQUEST['streamMode'] ) )
- $streamMode = validHtmlStr($_REQUEST['streamMode']);
+ $streamMode = validHtmlStr($_REQUEST['streamMode']);
else
- $streamMode = canStream()?'stream':'stills';
+ $streamMode = canStream()?'stream':'stills';
if ( isset( $_REQUEST['replayMode'] ) )
- $replayMode = validHtmlStr($_REQUEST['replayMode']);
+ $replayMode = validHtmlStr($_REQUEST['replayMode']);
if ( isset( $_COOKIE['replayMode']) && preg_match('#^[a-z]+$#', $_COOKIE['replayMode']) )
- $replayMode = validHtmlStr($_COOKIE['replayMode']);
+ $replayMode = validHtmlStr($_COOKIE['replayMode']);
else {
$keys = array_keys( $replayModes );
$replayMode = array_shift( $keys );
@@ -79,160 +79,162 @@ $focusWindow = true;
xhtmlHeaders(__FILE__, $SLANG['Event'] );
?>
-
-
-
-
-
- = $event['Id'] ?> |
- = validHtmlStr($event['Cause']) ?> |
- = strftime( STRF_FMT_DATETIME_SHORT, strtotime($event['StartTime'] ) ) ?> |
- = $event['Length'] ?>s |
- ">= $event['Frames'] ?>/= $event['AlarmFrames'] ?> |
- ">= $event['TotScore'] ?>/= $event['AvgScore'] ?>/= $event['MaxScore'] ?> |
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+