mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Fixed up a whole bunch of undefined variable warnings. Added a check to make sure raspap.auth exists before trying to include it.
This commit is contained in:
@@ -19,7 +19,11 @@
|
||||
*/
|
||||
|
||||
define('RASPI_CONFIG', '/etc/raspap');
|
||||
define('RASPI_ADMIN_DETAILS', RASPI_CONFIG.'/raspap.auth');
|
||||
if(file_exists(RASPI_CONFIG.'/raspap.auth')) {
|
||||
define('RASPI_ADMIN_DETAILS', RASPI_CONFIG.'/raspap.auth');
|
||||
} else {
|
||||
define('RASPI_ADMIN_DETAILS','');
|
||||
}
|
||||
|
||||
// Constants for configuration file paths.
|
||||
// These are typical for default RPi installs. Modify if needed.
|
||||
|
Reference in New Issue
Block a user