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
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Designerscripte
VMSone
Commits
05bfc1ae
Commit
05bfc1ae
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-14' into 'dev-3.0'
Update daten.php See merge request
!17
parents
dd0b988a
a96e68c6
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!46
Release 3.0
,
!17
Update daten.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/intern/daten.php
+3
-1
3 additions, 1 deletion
content/intern/daten.php
with
3 additions
and
1 deletion
content/intern/daten.php
+
3
−
1
View file @
05bfc1ae
...
@@ -2,7 +2,9 @@
...
@@ -2,7 +2,9 @@
if
(
isset
(
$_POST
[
'anf_daten'
])
&&
isset
(
$_POST
[
'anf_email'
]))
{
if
(
isset
(
$_POST
[
'anf_daten'
])
&&
isset
(
$_POST
[
'anf_email'
]))
{
$_POST
[
'anf_email'
]
=
addslashes
(
$_POST
[
'anf_email'
]);
$_POST
[
'anf_email'
]
=
addslashes
(
$_POST
[
'anf_email'
]);
$sql
=
sql
::
$db
->
query
(
"SELECT `uid`,`emailadresse` FROM "
.
_VMS_
.
"_emaildaten WHERE emailadresse = '"
.
$_POST
[
'anf_email'
]
.
"' LIMIT 1"
);
$sql
=
sql
::
$db
->
prepare
(
"SELECT `uid`,`emailadresse` FROM "
.
_VMS_
.
"_emaildaten WHERE emailadresse = :anf_email LIMIT 1"
);
$sql
->
bindParam
(
':anf_email'
,
$_POST
[
'anf_email'
],
PDO
::
PARAM_STR
);
$sql
->
execute
();
$daten_anfordern
=
$sql
->
fetch
();
$daten_anfordern
=
$sql
->
fetch
();
if
(
$daten_anfordern
[
'emailadresse'
])
{
if
(
$daten_anfordern
[
'emailadresse'
])
{
$neues_passwort
=
create_code
(
8
);
$neues_passwort
=
create_code
(
8
);
...
...
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