Add htmlentities to the agent string on the registrations page to handle special characters.
This commit is contained in:
parent
9c1ceb1177
commit
10321f8cba
|
|
@ -162,7 +162,7 @@ require_once "includes/checkauth.php";
|
|||
//echo " <td class='".$row_style[$c]."'> ".$row['user']." </td>\n";
|
||||
//echo " <td class='".$row_style[$c]."'> ".$row['contact']." </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'> ".$row['sip-auth-user']." </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'> ".$row['agent']." </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'> ".htmlentities($row['agent'])." </td>\n";
|
||||
//echo " <td class='".$row_style[$c]."'> ".$row['host']." </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'> <a href='http://".$row['network-ip']."' target='_blank'>".$row['network-ip']."</a> </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'> ".$row['network-port']." </td>\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue