librenms/html/pages/ports.php
Adam Amstrong fc0050d83c add page to remove deleted ports (pour mon petit grenouille!)
nn
  _.__-'@_ \/  _@'-__._
 /     '--)   (--`     \
/  >__<<_/  o  \_>>__<  \
 \\=x  \=x \|/ x=/  x=//



git-svn-id: http://www.observium.org/svn/observer/trunk@1074 61d68cd4-352d-0410-923a-c4978735b2b8
2010-04-24 22:43:25 +00:00

11 lines
207 B
PHP

<?php
#print_r($_GET);
$file = $config['install_dir'] . "/html/pages/ports/" . safename($_GET['opta']) . ".inc.php";
if(is_file($file)) { include($file); } else { include("ports/default.inc.php"); }
?>