mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			642 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if (device_permitted($entry['device_id']))
 | |
| {
 | |
|   echo("<tr>");
 | |
| 
 | |
|   // Stop shortening hostname. Issue #61
 | |
|   //$entry['hostname'] = shorthost($entry['hostname'], 20);
 | |
| 
 | |
|   if ($vars['page'] != "device")
 | |
|   {
 | |
|     echo("<td>" . $entry['date'] . "</td>");
 | |
|     echo("<td><strong>".generate_device_link($entry)."</strong></td>");
 | |
|     echo("<td><strong>" . $entry['program'] . " : </strong> " . htmlspecialchars($entry['msg']) . "</td>");
 | |
|   } else {
 | |
|     echo("<td><i>" . $entry['date'] . "</i>   <strong>" . $entry['program'] . "</strong>   " . htmlspecialchars($entry['msg']) . "</td>");
 | |
|   }
 | |
| 
 | |
|   echo("</tr>");
 | |
| 
 | |
| }
 | |
| 
 | |
| ?>
 |