Fixes overlay huge table for session listing, closes #105
This commit is contained in:
parent
634a62a253
commit
520afb449c
2 changed files with 2 additions and 8 deletions
|
@ -28,6 +28,8 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
|||
|
||||
### Deprecated
|
||||
### Removed
|
||||
* Removed active session management table displaying the last location of a session.
|
||||
|
||||
### Security
|
||||
|
||||
## v0.4.1 (Articulate Aerotitan)
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
<th>Session ID</th>
|
||||
<th>IP Address</th>
|
||||
<th>User Agent</th>
|
||||
<th>Last Location</th>
|
||||
<th>Last Activity</th>
|
||||
<th></th>
|
||||
</th>
|
||||
|
@ -53,13 +52,6 @@
|
|||
<td><code>{{ substr($session->id, 0, 8) }}</code></td>
|
||||
<td>{{ $session->ip_address }}</td>
|
||||
<td><small>{{ $session->user_agent }}</small></td>
|
||||
<td>
|
||||
@if(isset($prev['_previous']['url']))
|
||||
{{ str_replace(env('APP_URL'), '', $prev['_previous']['url']) }}
|
||||
@else
|
||||
<em>unknwon</em>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if((time() - $session->last_activity < 10))
|
||||
<em>just now</em>
|
||||
|
|
Loading…
Reference in a new issue