From 3478ac161e8eb18e92c04f2bc8af4921d0a521a6 Mon Sep 17 00:00:00 2001 From: Stephen Beaver Date: Mon, 23 Nov 2015 12:32:44 -0500 Subject: Change Form_TextArea to Form_Textarea (autoload now makes the classes case sensitive) --- src/usr/local/www/vpn_openvpn_server.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/usr/local/www/vpn_openvpn_server.php') diff --git a/src/usr/local/www/vpn_openvpn_server.php b/src/usr/local/www/vpn_openvpn_server.php index 67b0427..e250bdb 100644 --- a/src/usr/local/www/vpn_openvpn_server.php +++ b/src/usr/local/www/vpn_openvpn_server.php @@ -815,7 +815,7 @@ if($act=="new" || $act=="edit") : )); } - $section->addInput(new Form_TextArea( + $section->addInput(new Form_Textarea( 'tls', 'Key', $pconfig['tls'] @@ -877,7 +877,7 @@ if($act=="new" || $act=="edit") : )); } - $section->addInput(new Form_TextArea( + $section->addInput(new Form_Textarea( 'shared_key', 'Shared Key', $pconfig['shared_key'] @@ -1236,7 +1236,7 @@ if($act=="new" || $act=="edit") : $section = new Form_Section('Advanced Configuration'); $section->addClass('advanced'); - $section->addInput(new Form_TextArea( + $section->addInput(new Form_Textarea( 'custom_options', 'Custom options', $pconfig['custom_options'] -- cgit v1.1