writevlanmachistory.php 279 B

123456789101112
  1. <?php
  2. if ($_GET['action'] == 'writevlanmachistory') {
  3. if ($alterconf['VLANMACHISTORY']) {
  4. $history = new VlanMacHistory;
  5. $history->WriteVlanMacData();
  6. die('OK:WRITING NEW MACS');
  7. } else {
  8. die('ERROR:NO_VLAN_MAC_HISTORY ENABLED');
  9. }
  10. }