From b9bba6bde5287edc3512679b04d1e331a6f5cf6d Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 25 Jul 2016 15:32:57 -0400 Subject: [PATCH] fix to --- web/includes/Event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/Event.php b/web/includes/Event.php index 3d5a987ee..67967ff9a 100644 --- a/web/includes/Event.php +++ b/web/includes/Event.php @@ -215,7 +215,7 @@ function getImageSrc( $frame, $scale=SCALE_BASE, $captureOnly=false, $overwrite= Error( "Capture file does not exist at $captPath" ); return ''; } - $thumbCaptPath = ZM_DIR_IMAGES.'/'.$event['Id'].'-'.$captImage; + $thumbCaptPath = ZM_DIR_IMAGES.'/'.$this->{'Id'}'-'.$captImage; //echo "CI:$captImage, CP:$captPath, TCP:$thumbCaptPath
";