fix getPath -> Path
This commit is contained in:
parent
ff46344175
commit
11b206e281
|
@ -104,7 +104,7 @@ sub getEventPath
|
||||||
if ( $Config{ZM_USE_DEEP_STORAGE} )
|
if ( $Config{ZM_USE_DEEP_STORAGE} )
|
||||||
{
|
{
|
||||||
$event_path = join('/',
|
$event_path = join('/',
|
||||||
$Storage->getPath(),
|
$Storage->Path(),
|
||||||
$event->{MonitorId},
|
$event->{MonitorId},
|
||||||
strftime( "%y/%m/%d/%H/%M/%S",
|
strftime( "%y/%m/%d/%H/%M/%S",
|
||||||
localtime($event->{Time})
|
localtime($event->{Time})
|
||||||
|
@ -114,7 +114,7 @@ sub getEventPath
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$event_path = join('/',
|
$event_path = join('/',
|
||||||
$Storage->getPath(),
|
$Storage->Path(),
|
||||||
$event->{MonitorId},
|
$event->{MonitorId},
|
||||||
$event->{Id},
|
$event->{Id},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue