diff options
author | Mario <mario@mariovavti.com> | 2023-12-17 16:47:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-12-17 16:47:19 +0000 |
commit | 9df6e821d8e9fce7e177166d9d656280c7466a5d (patch) | |
tree | a070bdc3f338b22dfddf5fbf9ccca7c7e7d03b9d | |
parent | 9551dc5ecdb2d965ab44b32ebfcf62fe84a73c69 (diff) | |
download | volse-hubzilla-9df6e821d8e9fce7e177166d9d656280c7466a5d.tar.gz volse-hubzilla-9df6e821d8e9fce7e177166d9d656280c7466a5d.tar.bz2 volse-hubzilla-9df6e821d8e9fce7e177166d9d656280c7466a5d.zip |
use reqiure_once() - second part of issue #1827
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1403,7 +1403,7 @@ function x($s, $k = null) { * @ref include/system_unavailable.php will handle everything further. */ function system_unavailable() { - include('include/system_unavailable.php'); + require_once('include/system_unavailable.php'); system_down(); killme(); } |