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
d20f6323
Commit
d20f6323
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-25' into 'dev-3.0'
Update paidmails.php See merge request
!28
parents
8adf55c9
2c37c154
2 merge requests
!46
Release 3.0
,
!28
Update paidmails.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/verdienen/paidmails.php
+4
-2
4 additions, 2 deletions
content/verdienen/paidmails.php
with
4 additions
and
2 deletions
content/verdienen/paidmails.php
+
4
−
2
View file @
d20f6323
...
@@ -2,12 +2,14 @@
...
@@ -2,12 +2,14 @@
userstatus
();
userstatus
();
head
(
"Paidmailhistory"
);
head
(
"Paidmailhistory"
);
$paidmails
=
sql
::
$db
->
query
(
"SELECT
$paidmails
=
sql
::
$db
->
prepare
(
"SELECT
e.gueltig, e.tan, v.verdienst, v.beschreibung, v.mailtext, v.aufendhalt
e.gueltig, e.tan, v.verdienst, v.beschreibung, v.mailtext, v.aufendhalt
FROM "
.
_VMS_
.
"_paidmails_empfaenger e
FROM "
.
_VMS_
.
"_paidmails_empfaenger e
LEFT JOIN "
.
_VMS_
.
"_paidmails_versendet v ON v.tan = e.tan
LEFT JOIN "
.
_VMS_
.
"_paidmails_versendet v ON v.tan = e.tan
WHERE e.uid=
"
.
$_SESSION
[
'uid'
]
.
"
&& e.gueltig > "
.
time
()
.
" && e.status=0
WHERE e.uid=
:session_uid
&& e.gueltig > "
.
time
()
.
" && e.status=0
LIMIT 10"
);
LIMIT 10"
);
$paidmails
->
bindParam
(
':session_uid'
,
$_SESSION
[
'uid'
],
PDO
::
PARAM_INT
);
$paidmails
->
execute
();
while
(
$mail
=
$paidmails
->
fetch
()
)
{
while
(
$mail
=
$paidmails
->
fetch
()
)
{
echo
'
echo
'
<table border="1" id="mail_'
.
$mail
[
'tan'
]
.
'" width="100%">
<table border="1" id="mail_'
.
$mail
[
'tan'
]
.
'" width="100%">
...
...
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