mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
1c8931c63b
fucked up in 993dc633a9
17 lines
422 B
PHP
17 lines
422 B
PHP
<?php
|
|
|
|
require('../../includes/csrf.php');
|
|
include_once('../../includes/config.php');
|
|
include_once('../../includes/functions.php');
|
|
include_once('../../includes/wifi_functions.php');
|
|
|
|
$networks = [];
|
|
$network = null;
|
|
$ssid = null;
|
|
|
|
knownWifiStations($networks);
|
|
nearbyWifiStations($networks, !isset($_REQUEST["refresh"]));
|
|
connectedWifiStations($networks);
|
|
|
|
echo renderTemplate('wifi_stations', compact('networks'));
|