Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
92bf3f2a
Commit
92bf3f2a
authored
Jun 27, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup js in vpn_ipsec_phase2.php for
https://github.com/opnsense/core/issues/1005
parent
ec533835
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
196 deletions
+67
-196
vpn_ipsec_phase2.php
src/www/vpn_ipsec_phase2.php
+67
-196
No files found.
src/www/vpn_ipsec_phase2.php
View file @
92bf3f2a
...
@@ -461,184 +461,55 @@ include("head.inc");
...
@@ -461,184 +461,55 @@ include("head.inc");
<body>
<body>
<?php
include
(
"fbegin.inc"
);
?>
<?php
include
(
"fbegin.inc"
);
?>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
//
<!
[
CDATA
[
$
(
document
).
ready
(
function
()
{
// old js code..
change_mode
(
'
<?=
$pconfig
[
'mode'
]
?>
'
);
change_protocol
(
'
<?=
$pconfig
[
'protocol'
]
?>
'
);
typesel_change_local
(
<?=
$pconfig
[
'localid_netbits'
]
?>
);
<?php
if
(
isset
(
$pconfig
[
'natlocalid_netbits'
]))
:
?>
typesel_change_natlocal
(
<?=
$pconfig
[
'natlocalid_netbits'
]
?>
);
<?php
endif
;
?>
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
?>
typesel_change_remote
(
<?=
$pconfig
[
'remoteid_netbits'
]
?>
);
<?php
endif
;
?>
$
(
document
).
ready
(
function
()
{
$
(
document
).
ready
(
function
()
{
// hook in, ipv4/ipv6 selector events
$
(
"
#mode
"
).
change
(
function
(){
hook_ipv4v6
(
'
ipv4v6net
'
,
'
network-id
'
);
$
(
"
.opt_localid
"
).
hide
();
});
$
(
"
.opt_remoteid
"
).
hide
();
});
if
(
$
(
this
).
val
()
==
'
tunnel
'
||
$
(
this
).
val
()
==
'
tunnel6
'
)
{
$
(
"
.opt_localid
"
).
show
();
function
change_mode
()
{
if
(
$
(
"
#mobile
"
).
val
()
==
undefined
)
{
index
=
document
.
iform
.
mode
.
selectedIndex
;
$
(
"
.opt_remoteid
"
).
show
();
value
=
document
.
iform
.
mode
.
options
[
index
].
value
;
if
((
value
==
'
tunnel
'
)
||
(
value
==
'
tunnel6
'
))
{
document
.
getElementById
(
'
opt_localid
'
).
style
.
display
=
''
;
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
?>
document
.
getElementById
(
'
opt_remoteid
'
).
style
.
display
=
''
;
<?php
endif
;
?>
}
else
{
document
.
getElementById
(
'
opt_localid
'
).
style
.
display
=
'
none
'
;
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
?>
document
.
getElementById
(
'
opt_remoteid
'
).
style
.
display
=
'
none
'
;
<?php
endif
;
?>
}
}
}
function
typesel_change_natlocal
(
bits
)
{
var
value
=
document
.
iform
.
mode
.
options
[
index
].
value
;
if
(
typeof
(
bits
)
===
"
undefined
"
)
{
if
(
value
===
"
tunnel
"
)
{
bits
=
24
;
}
}
else
if
(
value
===
"
tunnel6
"
)
{
$
(
window
).
resize
();
bits
=
64
;
});
}
$
(
"
#mode
"
).
change
();
}
var
address_is_blank
=
!
/
\S
/
.
test
(
document
.
iform
.
natlocalid_address
.
value
);
switch
(
document
.
iform
.
natlocalid_type
.
selectedIndex
)
{
case
0
:
/* single */
document
.
iform
.
natlocalid_address
.
disabled
=
0
;
if
(
address_is_blank
)
{
document
.
iform
.
natlocalid_netbits
.
value
=
0
;
}
document
.
iform
.
natlocalid_netbits
.
disabled
=
1
;
break
;
case
1
:
/* network */
document
.
iform
.
natlocalid_address
.
disabled
=
0
;
if
(
address_is_blank
)
{
document
.
iform
.
natlocalid_netbits
.
value
=
bits
;
}
document
.
iform
.
natlocalid_netbits
.
disabled
=
0
;
break
;
case
3
:
/* none */
document
.
iform
.
natlocalid_address
.
disabled
=
1
;
document
.
iform
.
natlocalid_netbits
.
disabled
=
1
;
break
;
default
:
document
.
iform
.
natlocalid_address
.
value
=
""
;
document
.
iform
.
natlocalid_address
.
disabled
=
1
;
if
(
address_is_blank
)
{
document
.
iform
.
natlocalid_netbits
.
value
=
0
;
}
document
.
iform
.
natlocalid_netbits
.
disabled
=
1
;
break
;
}
}
function
typesel_change_local
(
bits
)
{
var
value
=
document
.
iform
.
mode
.
options
[
index
].
value
;
if
(
typeof
(
bits
)
===
"
undefined
"
)
{
if
(
value
===
"
tunnel
"
)
{
bits
=
24
;
}
else
if
(
value
===
"
tunnel6
"
)
{
bits
=
64
;
}
}
var
address_is_blank
=
!
/
\S
/
.
test
(
document
.
iform
.
localid_address
.
value
);
switch
(
document
.
iform
.
localid_type
.
selectedIndex
)
{
case
0
:
/* single */
document
.
iform
.
localid_address
.
disabled
=
0
;
if
(
address_is_blank
)
{
document
.
iform
.
localid_netbits
.
value
=
0
;
}
document
.
iform
.
localid_netbits
.
disabled
=
1
;
break
;
case
1
:
/* network */
document
.
iform
.
localid_address
.
disabled
=
0
;
if
(
address_is_blank
)
{
document
.
iform
.
localid_netbits
.
value
=
bits
;
}
document
.
iform
.
localid_netbits
.
disabled
=
0
;
break
;
case
3
:
/* none */
document
.
iform
.
localid_address
.
disabled
=
1
;
document
.
iform
.
localid_netbits
.
disabled
=
1
;
break
;
default
:
document
.
iform
.
localid_address
.
value
=
""
;
document
.
iform
.
localid_address
.
disabled
=
1
;
if
(
address_is_blank
)
{
document
.
iform
.
localid_netbits
.
value
=
0
;
}
document
.
iform
.
localid_netbits
.
disabled
=
1
;
break
;
}
}
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
?>
function
typesel_change_remote
(
bits
)
{
$
(
"
#proto
"
).
change
(
function
(){
var
value
=
document
.
iform
.
mode
.
options
[
index
].
value
;
if
(
$
(
this
).
val
()
==
'
esp
'
)
{
if
(
typeof
(
bits
)
===
"
undefined
"
)
{
$
(
"
#opt_enc
"
).
show
();
if
(
value
===
"
tunnel
"
)
{
}
else
{
bits
=
24
;
$
(
"
#opt_enc
"
).
hide
();
}
else
if
(
value
===
"
tunnel6
"
)
{
bits
=
64
;
}
}
var
address_is_blank
=
!
/
\S
/
.
test
(
document
.
iform
.
remoteid_address
.
value
);
switch
(
document
.
iform
.
remoteid_type
.
selectedIndex
)
{
case
0
:
/* single */
document
.
iform
.
remoteid_address
.
disabled
=
0
;
if
(
address_is_blank
)
{
document
.
iform
.
remoteid_netbits
.
value
=
0
;
}
}
document
.
iform
.
remoteid_netbits
.
disabled
=
1
;
$
(
window
).
resize
();
});
$
(
"
#proto
"
).
change
();
[
'
localid
'
,
'
remoteid
'
,
'
natlocalid
'
].
map
(
function
(
field
){
$
(
"
#
"
+
field
+
"
_type
"
).
change
(
function
(){
$
(
"
#
"
+
field
+
"
_netbits
"
).
prop
(
"
disabled
"
,
true
);
$
(
"
#
"
+
field
+
"
_address
"
).
prop
(
"
disabled
"
,
true
);
$
(
"
#
"
+
field
+
"
_netbits
"
).
parent
().
parent
().
show
();
switch
(
$
(
this
).
val
())
{
case
'
address
'
:
$
(
"
#
"
+
field
+
"
_address
"
).
prop
(
"
disabled
"
,
false
);
break
;
break
;
case
1
:
/* network */
case
'
network
'
:
document
.
iform
.
remoteid_address
.
disabled
=
0
;
$
(
"
#
"
+
field
+
"
_netbits
"
).
prop
(
"
disabled
"
,
false
);
if
(
address_is_blank
)
{
$
(
"
#
"
+
field
+
"
_address
"
).
prop
(
"
disabled
"
,
false
);
document
.
iform
.
remoteid_netbits
.
value
=
bits
;
}
document
.
iform
.
remoteid_netbits
.
disabled
=
0
;
break
;
break
;
default
:
default
:
document
.
iform
.
remoteid_address
.
value
=
""
;
$
(
"
#
"
+
field
+
"
_netbits
"
).
parent
().
parent
().
hide
();
document
.
iform
.
remoteid_address
.
disabled
=
1
;
if
(
address_is_blank
)
{
document
.
iform
.
remoteid_netbits
.
value
=
0
;
}
document
.
iform
.
remoteid_netbits
.
disabled
=
1
;
break
;
break
;
}
}
}
$
(
window
).
resize
();
});
<?php
$
(
"
#
"
+
field
+
"
_type
"
).
change
();
endif
;
?>
});
function
change_protocol
()
{
index
=
document
.
iform
.
proto
.
selectedIndex
;
value
=
document
.
iform
.
proto
.
options
[
index
].
value
;
if
(
value
==
'
esp
'
)
document
.
getElementById
(
'
opt_enc
'
).
style
.
display
=
''
;
else
document
.
getElementById
(
'
opt_enc
'
).
style
.
display
=
'
none
'
;
}
//]]>
// hook in, ipv4/ipv6 selector events
hook_ipv4v6
(
'
ipv4v6net
'
,
'
network-id
'
);
});
</script>
</script>
<?php
<?php
...
@@ -675,7 +546,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -675,7 +546,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
<tr>
<tr>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Mode"
);
?>
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Mode"
);
?>
</td>
<td>
<td>
<select
name=
"mode"
class=
"formselect"
onchange=
"change_mode()
"
>
<select
name=
"mode"
id=
"mode"
class=
"formselect
"
>
<?php
<?php
$p2_modes
=
array
(
$p2_modes
=
array
(
'tunnel'
=>
'Tunnel IPv4'
,
'tunnel'
=>
'Tunnel IPv4'
,
...
@@ -702,13 +573,13 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -702,13 +573,13 @@ if (isset($input_errors) && count($input_errors) > 0) {
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td
colspan=
"2"
><b>
<?=
gettext
(
"Local Network"
);
?>
</b></td>
<td
colspan=
"2"
><b>
<?=
gettext
(
"Local Network"
);
?>
</b></td>
</tr>
</tr>
<tr
id
=
"opt_localid"
>
<tr
class
=
"opt_localid"
>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Type"
);
?>
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Type"
);
?>
</td>
<td>
<td>
<select
name=
"localid_type"
class=
"formselect"
onchange=
"typesel_change_local()
"
>
<select
name=
"localid_type"
id=
"localid_type
"
>
<option
value=
"address"
<?=
$pconfig
[
'localid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
?>
>
<?=
gettext
(
"Address"
);
?>
</option>
<option
value=
"address"
<?=
$pconfig
[
'localid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
?>
>
<?=
gettext
(
"Address"
);
?>
</option>
<option
value=
"network"
<?=
$pconfig
[
'localid_type'
]
==
"network"
?
"selected=
\"
selected
\"
"
:
""
?>
>
<?=
gettext
(
"Network"
);
?>
</option>
<option
value=
"network"
<?=
$pconfig
[
'localid_type'
]
==
"network"
?
"selected=
\"
selected
\"
"
:
""
?>
>
<?=
gettext
(
"Network"
);
?>
</option>
<?php
<?php
...
@@ -722,7 +593,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -722,7 +593,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
</select>
</select>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address:"
);
?>
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address:"
);
?>
</td>
<td>
<td>
<input
name=
"localid_address"
type=
"text"
id=
"localid_address"
size=
"28"
value=
"
<?=
$pconfig
[
'localid_address'
];
?>
"
/>
<input
name=
"localid_address"
type=
"text"
id=
"localid_address"
size=
"28"
value=
"
<?=
$pconfig
[
'localid_address'
];
?>
"
/>
...
@@ -738,10 +609,10 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -738,10 +609,10 @@ if (isset($input_errors) && count($input_errors) > 0) {
</select>
</select>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td
colspan=
"2"
><b>
<?=
gettext
(
"NAT/BINAT"
);
?>
</b></td>
<td
colspan=
"2"
><b>
<?=
gettext
(
"NAT/BINAT"
);
?>
</b></td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td><a
id=
"help_for_natlocalid_nattype"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"NAT Type"
);
?>
</td>
<td><a
id=
"help_for_natlocalid_nattype"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"NAT Type"
);
?>
</td>
<td>
<td>
<select
name=
"natlocalid_nattype"
class=
"formselect"
>
<select
name=
"natlocalid_nattype"
class=
"formselect"
>
...
@@ -760,10 +631,10 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -760,10 +631,10 @@ if (isset($input_errors) && count($input_errors) > 0) {
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td><a
id=
"help_for_natlocalid_type"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Type"
);
?>
</td>
<td><a
id=
"help_for_natlocalid_type"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Type"
);
?>
</td>
<td>
<td>
<select
name=
"natlocalid_type"
class=
"formselect"
onchange=
"typesel_change_natlocal()
"
>
<select
name=
"natlocalid_type"
id=
"natlocalid_type
"
>
<option
value=
"address"
<?=
!
empty
(
$pconfig
[
'natlocalid_type'
])
&&
$pconfig
[
'natlocalid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
<option
value=
"address"
<?=
!
empty
(
$pconfig
[
'natlocalid_type'
])
&&
$pconfig
[
'natlocalid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
<?=
gettext
(
"Address"
);
?>
<?=
gettext
(
"Address"
);
?>
</option>
</option>
...
@@ -779,7 +650,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -779,7 +650,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
</div>
</div>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_localid"
>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address:"
);
?>
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address:"
);
?>
</td>
<td>
<td>
<input
name=
"natlocalid_address"
type=
"text"
class=
"formfld unknown ipv4v6"
id=
"natlocalid_address"
size=
"28"
value=
"
<?=
isset
(
$pconfig
[
'natlocalid_address'
])
?
$pconfig
[
'natlocalid_address'
]
:
""
;
?>
"
/>
<input
name=
"natlocalid_address"
type=
"text"
class=
"formfld unknown ipv4v6"
id=
"natlocalid_address"
size=
"28"
value=
"
<?=
isset
(
$pconfig
[
'natlocalid_address'
])
?
$pconfig
[
'natlocalid_address'
]
:
""
;
?>
"
/>
...
@@ -798,13 +669,13 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -798,13 +669,13 @@ if (isset($input_errors) && count($input_errors) > 0) {
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
<?php
if
(
!
isset
(
$pconfig
[
'mobile'
]))
:
?>
?>
<tr
id
=
"opt_remoteid"
>
<tr
class
=
"opt_remoteid"
>
<td
colspan=
"2"
><b>
<?=
gettext
(
"Remote Network"
);
?>
</b></td>
<td
colspan=
"2"
><b>
<?=
gettext
(
"Remote Network"
);
?>
</b></td>
</tr>
</tr>
<tr>
<tr
class=
"opt_remoteid"
>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Type"
);
?>
:
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Type"
);
?>
:
</td>
<td>
<td>
<select
name=
"remoteid_type"
class=
"formselect"
onchange=
"typesel_change_remote()
"
>
<select
name=
"remoteid_type"
id=
"remoteid_type"
class=
"formselect
"
>
<option
value=
"address"
<?=
$pconfig
[
'remoteid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
<option
value=
"address"
<?=
$pconfig
[
'remoteid_type'
]
==
"address"
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
<?=
gettext
(
"Address"
);
?>
<?=
gettext
(
"Address"
);
?>
</option>
</option>
...
@@ -814,7 +685,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
...
@@ -814,7 +685,7 @@ if (isset($input_errors) && count($input_errors) > 0) {
</select>
</select>
</td>
</td>
</tr>
</tr>
<tr>
<tr
class=
"opt_remoteid"
>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address"
);
?>
:
</td>
<td><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Address"
);
?>
:
</td>
<td>
<td>
<input
name=
"remoteid_address"
type=
"text"
class=
"formfld unknown ipv4v6"
id=
"remoteid_address"
size=
"28"
value=
"
<?=
$pconfig
[
'remoteid_address'
];
?>
"
/>
<input
name=
"remoteid_address"
type=
"text"
class=
"formfld unknown ipv4v6"
id=
"remoteid_address"
size=
"28"
value=
"
<?=
$pconfig
[
'remoteid_address'
];
?>
"
/>
...
@@ -841,7 +712,7 @@ endif; ?>
...
@@ -841,7 +712,7 @@ endif; ?>
<tr>
<tr>
<td><a
id=
"help_for_proto"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Protocol"
);
?>
</td>
<td><a
id=
"help_for_proto"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Protocol"
);
?>
</td>
<td
width=
"78%"
class=
"vtable"
>
<td
width=
"78%"
class=
"vtable"
>
<select
name=
"protocol"
id=
"proto"
class=
"formselect"
onchange=
"change_protocol()"
>
<select
name=
"protocol"
id=
"proto"
>
<?php
<?php
foreach
(
array
(
'esp'
=>
'ESP'
,
'ah'
=>
'AH'
)
as
$proto
=>
$protoname
)
:?>
foreach
(
array
(
'esp'
=>
'ESP'
,
'ah'
=>
'AH'
)
as
$proto
=>
$protoname
)
:?>
<
option
value
=
"<?=
$proto
;?>"
<?=
$proto
==
$pconfig
[
'protocol'
]
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
<
option
value
=
"<?=
$proto
;?>"
<?=
$proto
==
$pconfig
[
'protocol'
]
?
"selected=
\"
selected
\"
"
:
""
;
?>
>
...
@@ -953,12 +824,12 @@ endif; ?>
...
@@ -953,12 +824,12 @@ endif; ?>
<tr>
<tr>
<td>
</td>
<td>
</td>
<td
width=
"78%"
>
<td
width=
"78%"
>
<?php
if
(
isset
(
$pconfig
[
'mobile'
]))
:
<?php
?>
if
(
isset
(
$pconfig
[
'mobile'
]))
:
?>
<
input
name
=
"mobile"
type
=
"hidden"
value
=
"true"
/>
<
input
name
=
"mobile"
type
=
"hidden"
value
=
"true"
/>
<
input
name
=
"remoteid_type"
type
=
"hidden"
value
=
"mobile"
/>
<
input
name
=
"remoteid_type"
type
=
"hidden"
value
=
"mobile"
/>
<?
php
<?
php
endif
;
?>
endif
;
?>
<input
name=
"Submit"
type=
"submit"
class=
"btn btn-primary"
value=
"
<?=
gettext
(
"Save"
);
?>
"
/>
<input
name=
"Submit"
type=
"submit"
class=
"btn btn-primary"
value=
"
<?=
gettext
(
"Save"
);
?>
"
/>
<input
name=
"ikeid"
type=
"hidden"
value=
"
<?=
$pconfig
[
'ikeid'
];
?>
"
/>
<input
name=
"ikeid"
type=
"hidden"
value=
"
<?=
$pconfig
[
'ikeid'
];
?>
"
/>
<input
name=
"uniqid"
type=
"hidden"
value=
"
<?=
$pconfig
[
'uniqid'
];
?>
"
/>
<input
name=
"uniqid"
type=
"hidden"
value=
"
<?=
$pconfig
[
'uniqid'
];
?>
"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment