Files
librenms-librenms/html/ajax_mapview.php

8 lines
172 B
PHP
Raw Normal View History

2016-08-12 22:51:29 +03:00
<?php
session_start();
if (isset($_REQUEST['mapView'])) {
$_SESSION['mapView'] = $_REQUEST['mapView'];
}
header('Content-type: text/plain');
echo $_SESSION['mapView'];