mirror of
https://github.com/pi-hole/web.git
synced 2025-12-26 21:46:22 +00:00
- Made favicon work across pages - No longer needs root access to tee command, still needs root access for gravity.sh and whitelist.sh - Added call to gravity.sh when you remove an item - Moved header and footer into separate files - Moved files from list into the main folder - Got rid of extra dependencies from the old list setup - Added home button to sidebar - Renamed original whitelist to "Old Whitelist" - Added buttons to sidebar for Whitelist and Blacklist
6 lines
143 B
PHP
6 lines
143 B
PHP
<?php
|
|
if(!isset($_GET['domain'], $_GET['list']))
|
|
return;
|
|
|
|
exec("ex +g/${_GET['domain']}/d -cwq /etc/pihole/${_GET['list']}list.txt");
|