|
@@ 64-66 (lines=3) @@
|
| 61 |
|
if (isset($search['simple_url'])) { |
| 62 |
|
$conditions['meta.simple_url'] = (string)$search['simple_url']; |
| 63 |
|
} |
| 64 |
|
if (!empty($search['request_start'])) { |
| 65 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$gte'] = $this->_convertDate($search['request_start']); |
| 66 |
|
} |
| 67 |
|
if (!empty($search['request_end'])) { |
| 68 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$lte'] = $this->_convertDate($search['request_end']); |
| 69 |
|
} |
|
@@ 67-69 (lines=3) @@
|
| 64 |
|
if (!empty($search['request_start'])) { |
| 65 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$gte'] = $this->_convertDate($search['request_start']); |
| 66 |
|
} |
| 67 |
|
if (!empty($search['request_end'])) { |
| 68 |
|
$conditions['meta.SERVER.REQUEST_TIME']['$lte'] = $this->_convertDate($search['request_end']); |
| 69 |
|
} |
| 70 |
|
|
| 71 |
|
if (!empty($search['remote_addr'])) { |
| 72 |
|
$conditions['meta.SERVER.REMOTE_ADDR'] = (string)$search['remote_addr']; |