Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Helmo
ISPConfig 3
Commits
47219676
Commit
47219676
authored
10 years ago
by
Falko Timme
Browse files
Options
Downloads
Patches
Plain Diff
- fixed wrong function definition for the encode() function in remote.lib.php.
parent
c582da17
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
interface/lib/classes/remoting_lib.inc.php
+1
-2
1 addition, 2 deletions
interface/lib/classes/remoting_lib.inc.php
with
1 addition
and
2 deletions
interface/lib/classes/remoting_lib.inc.php
+
1
−
2
View file @
47219676
...
...
@@ -186,12 +186,11 @@ class remoting_lib extends tform_base {
/**
* Rewrite the record data to be stored in the database
* and check values with regular expressions.
* dummy parameter is only there for compatibility with params of base class
*
* @param record = Datensatz als Array
* @return record
*/
function
encode
(
$record
,
$dbencode
=
true
,
$dummy
=
''
)
{
function
encode
(
$record
,
$tab
=
''
,
$dbencode
=
true
)
{
$new_record
=
$this
->
_encode
(
$record
,
''
,
$dbencode
,
true
);
if
(
isset
(
$record
[
'_ispconfig_pw_crypted'
]))
$new_record
[
'_ispconfig_pw_crypted'
]
=
$record
[
'_ispconfig_pw_crypted'
];
// this one is not in form definitions!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment