Skip to content
Snippets Groups Projects
Commit 0db82ea5 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch 'imporove-logging' into 'main'

add clickable filters in tables

See merge request !43
parents a1d5689e f0357759
No related branches found
No related tags found
1 merge request!43add clickable filters in tables
Pipeline #5313 passed
...@@ -78,7 +78,7 @@ foreach($oMfasessions->search([ ...@@ -78,7 +78,7 @@ foreach($oMfasessions->search([
<td title=\"$sTimes\">".( $sLifetime). "</td> <td title=\"$sTimes\">".( $sLifetime). "</td>
<td title=\"$sTimes\">".date("Y-m-d H:i:s", $aSession['timemfa']). "</td> <td title=\"$sTimes\">".date("Y-m-d H:i:s", $aSession['timemfa']). "</td>
<td><a href=\"#\" onclick=\"filter(this); return false;\">$aSession[username]</a></td> <td><a href=\"#\" onclick=\"filter(this); return false;\">$aSession[username]</a></td>
<td>".($aApps[$aSession['appid']] ?? "")."</td> <td><a href=\"#\" onclick=\"filter(this); return false;\">".($aApps[$aSession['appid']] ?? "")."</a></td>
<td><a href=\"#\" onclick=\"filter(this); return false;\">$aSession[appid]</a></td> <td><a href=\"#\" onclick=\"filter(this); return false;\">$aSession[appid]</a></td>
<td>$aSession[method]</td> <td>$aSession[method]</td>
<td><a href=\"https://whatismyipaddress.com/ip/$aSession[ip]\" target=\"_blank\">$aSession[ip]</a></td> <td><a href=\"https://whatismyipaddress.com/ip/$aSession[ip]\" target=\"_blank\">$aSession[ip]</a></td>
......
...@@ -81,7 +81,7 @@ if ($aUsers) { ...@@ -81,7 +81,7 @@ if ($aUsers) {
$sList .= " $sList .= "
<tr> <tr>
<td>{$aUser['username']}</td> <td>{$aUser['username']}</td>
<td>".($aApps[$aUser['appid']] ?? "?")."</td> <td><a href=\"#\" onclick=\"filter(this); return false;\">".($aApps[$aUser['appid']] ?? "?")."</a></td>
<td><a href=\"#\" onclick=\"filter(this); return false;\">{$aUser['appid']}</a></td> <td><a href=\"#\" onclick=\"filter(this); return false;\">{$aUser['appid']}</a></td>
<td>{$aUser['timecreated']}</td> <td>{$aUser['timecreated']}</td>
<td><nobr> <td><nobr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment