Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
8cddcd77
Commit
8cddcd77
authored
Oct 08, 2011
by
fantu
Browse files
FS#1792 - Replace split (deprecated in PHP 5.3)
parent
209ce851
Changes
3
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
8cddcd77
...
...
@@ -2067,7 +2067,7 @@ class installer_base {
if
(
is_file
(
$tConf
)
)
{
$stat
=
exec
(
'stat -c \'%a %U %G\' '
.
escapeshellarg
(
$tConf
),
$output
,
$res
);
if
(
$res
==
0
)
{
// stat successfull
list
(
$access
,
$user
,
$group
)
=
split
(
" "
,
$stat
);
list
(
$access
,
$user
,
$group
)
=
explode
(
" "
,
$stat
);
}
if
(
copy
(
$tConf
,
$tConf
.
'~'
)
)
{
...
...
interface/lib/classes/validate_cron.inc.php
View file @
8cddcd77
...
...
@@ -78,7 +78,7 @@ class validate_cron {
if
(
preg_match
(
"'^[0-9\-\,\/\*]+$'"
,
$field_value
)
==
false
)
return
$this
->
get_error
(
$validator
[
'errmsg'
]);
// allowed characters are 0-9, comma, *, -, /
elseif
(
preg_match
(
"'[\-\,\/][\-\,\/]'"
,
$field_value
)
==
true
)
return
$this
->
get_error
(
$validator
[
'errmsg'
]);
// comma, - and / never stand together
//* now split list and check each entry. store used values in array for later limit-check
$time_list
=
split
(
","
,
$field_value
);
$time_list
=
explode
(
","
,
$field_value
);
if
(
count
(
$time_list
)
<
1
)
return
$this
->
get_error
(
$validator
[
'errmsg'
]);
$max_entry
=
0
;
...
...
interface/lib/classes/validate_database.inc.php
View file @
8cddcd77
...
...
@@ -39,7 +39,7 @@ class validate_database {
if
(
$_POST
[
"remote_access"
]
==
"y"
)
{
if
(
trim
(
$field_value
)
==
""
)
return
;
$values
=
split
(
","
,
$field_value
);
$values
=
explode
(
","
,
$field_value
);
foreach
(
$values
as
$cur_value
)
{
$cur_value
=
trim
(
$cur_value
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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