Fix the domain when using Show ALL
This commit is contained in:
parent
50e222b3e4
commit
8564133d7b
|
|
@ -419,7 +419,7 @@
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
}
|
}
|
||||||
if (!empty($_GET['show']) && $_GET['show'] == "all" && permission_exists('device_all')) {
|
if (!empty($_GET['show']) && $_GET['show'] == "all" && permission_exists('device_all')) {
|
||||||
echo " <td>".escape($domain_name)."</td>\n";
|
echo " <td>".escape($row['domain_name'])."</td>\n";
|
||||||
}
|
}
|
||||||
echo " <td class='no-wrap'>";
|
echo " <td class='no-wrap'>";
|
||||||
echo permission_exists('device_edit') ? "<a href='".$list_row_url."'>".escape(format_device_address($row['device_address']))."</a>" : escape(format_device_address($row['device_address']));
|
echo permission_exists('device_edit') ? "<a href='".$list_row_url."'>".escape(format_device_address($row['device_address']))."</a>" : escape(format_device_address($row['device_address']));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue