diff options
author | doktornotor <notordoktor@gmail.com> | 2015-11-23 20:29:25 +0100 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-11-23 20:29:25 +0100 |
commit | f360a48670266f97c620fd225c153c8f6be3be4a (patch) | |
tree | aabf7761085d696f6feca0589173630e26af3e5a /config/filer | |
parent | a4bfe620fc804676b3b40dccb5683d99adb75bda (diff) | |
download | pfsense-packages-f360a48670266f97c620fd225c153c8f6be3be4a.tar.gz pfsense-packages-f360a48670266f97c620fd225c153c8f6be3be4a.tar.bz2 pfsense-packages-f360a48670266f97c620fd225c153c8f6be3be4a.zip |
filer - add bunch of missing includes
Diffstat (limited to 'config/filer')
-rw-r--r-- | config/filer/filer.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/filer/filer.inc b/config/filer/filer.inc index 63cdb302..ac7fba43 100644 --- a/config/filer/filer.inc +++ b/config/filer/filer.inc @@ -30,6 +30,13 @@ POSSIBILITY OF SUCH DAMAGE. */ /* ========================================================================== */ +require_once("config.inc"); +require_once("globals.inc"); +require_once("notices.inc"); +require_once("util.inc"); +require_once("xmlrpc.inc"); +require_once("xmlrpc_client.inc"); + function filer_text_area_decode($text) { return preg_replace('/\r\n/', "\n", base64_decode($text)); } |