|
@@ 52-54 (lines=3) @@
|
| 49 |
|
if (isset($search['simple_url'])) { |
| 50 |
|
$conditions['meta.simple_url'] = (string)$search['simple_url']; |
| 51 |
|
} |
| 52 |
|
if (!empty($search['request_start'])) { |
| 53 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$gte'] = $this->convertDate($search['request_start']); |
| 54 |
|
} |
| 55 |
|
if (!empty($search['request_end'])) { |
| 56 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$lte'] = $this->convertDate($search['request_end']); |
| 57 |
|
} |
|
@@ 55-57 (lines=3) @@
|
| 52 |
|
if (!empty($search['request_start'])) { |
| 53 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$gte'] = $this->convertDate($search['request_start']); |
| 54 |
|
} |
| 55 |
|
if (!empty($search['request_end'])) { |
| 56 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$lte'] = $this->convertDate($search['request_end']); |
| 57 |
|
} |
| 58 |
|
|
| 59 |
|
if (!empty($search['remote_addr'])) { |
| 60 |
|
$conditions['meta.SERVER.REMOTE_ADDR'] = (string)$search['remote_addr']; |