Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMSone
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
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
Designerscripte
VMSone
Commits
bbf8e1be
Commit
bbf8e1be
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-2' into 'dev-3.0'
Update betreiber.php See merge request
!5
parents
f96b8e8d
ef352340
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!46
Release 3.0
,
!5
Update betreiber.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
adminforce/content/interfacedaten/betreiber.php
+3
-1
3 additions, 1 deletion
adminforce/content/interfacedaten/betreiber.php
with
3 additions
and
1 deletion
adminforce/content/interfacedaten/betreiber.php
+
3
−
1
View file @
bbf8e1be
...
...
@@ -41,7 +41,9 @@ head("Betreiber wählen");
</form>'
;
if
(
isset
(
$_POST
[
'schnittstelle'
])){
$sql
=
sql
::
$db
->
query
(
"SELECT * FROM "
.
_VMS_
.
"_schnittstelle WHERE schnittstelle='"
.
$_POST
[
'schnittstelle'
]
.
"' LIMIT 1"
);
$sql
=
sql
::
$db
->
query
(
"SELECT * FROM "
.
_VMS_
.
"_schnittstelle WHERE schnittstelle=:schnittstelle LIMIT 1"
);
$sql
->
bindParam
(
':schnittstelle'
,
$_POST
[
'schnittstelle'
],
PDO
::
PARAM_STR
);
$sql
->
execute
();
$interface
=
$sql
->
fetch
();
}
echo
'<form action="" method="post">
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment