mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Excluded more pages from caching
This commit is contained in:
@@ -22,7 +22,7 @@ else if ($vars['purge']) {
|
||||
echo '<table cellpadding=5 cellspacing=0 border=0 width=100%>';
|
||||
echo "<tr><td></td><td></td><td></td><td><a href='deleted-ports/purge=all/'><img src='images/16/cross.png' align=absmiddle></img> Purge All</a></td></tr>";
|
||||
|
||||
foreach (dbFetchRows("SELECT * FROM `ports` AS P, `devices` as D WHERE P.`deleted` = '1' AND D.device_id = P.device_id") as $interface) {
|
||||
foreach (dbFetchRows("SELECT * FROM `ports` AS P, `devices` as D WHERE P.`deleted` = '1' AND D.device_id = P.device_id",array(),true) as $interface) {
|
||||
$interface = ifLabel($interface, $interface);
|
||||
if (port_permitted($interface['port_id'], $interface['device_id'])) {
|
||||
echo '<tr class=list>';
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<?php
|
||||
|
||||
$no_refresh = TRUE;
|
||||
$config['memcached']['enable'] = false;
|
||||
|
||||
$link_array = array('page' => 'device',
|
||||
'device' => $device['device_id'],
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
* @subpackage Page
|
||||
*/
|
||||
$pagetitle[] = 'Global Settings';
|
||||
$config['memcached']['enable'] = false;
|
||||
?>
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
Reference in New Issue
Block a user