diff options
author | doktornotor <notordoktor@gmail.com> | 2017-03-13 17:22:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-13 17:22:23 +0100 |
commit | fc0f1121114c18c6fdb91ee61fc870b509c149d1 (patch) | |
tree | e1b1ad4efb7051c98299d50df178aa7732c33fc0 | |
parent | 9df2adfcc73c350295e9f82e8e91484536b34b7a (diff) | |
download | pfsense-fc0f1121114c18c6fdb91ee61fc870b509c149d1.zip pfsense-fc0f1121114c18c6fdb91ee61fc870b509c149d1.tar.gz |
Fix broken includes
-rw-r--r-- | src/usr/local/www/wizards/openvpn_wizard.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/usr/local/www/wizards/openvpn_wizard.inc b/src/usr/local/www/wizards/openvpn_wizard.inc index afd88b2..a46f27d 100644 --- a/src/usr/local/www/wizards/openvpn_wizard.inc +++ b/src/usr/local/www/wizards/openvpn_wizard.inc @@ -19,7 +19,11 @@ * limitations under the License. */ +require_once("auth.inc"); +require_once("certs.inc"); +require_once("config.inc"); require_once("openvpn.inc"); +require_once("util.inc"); function has_special_chars($text) { return preg_match('/[^A-Za-z0-9 _-]/', $text); |