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
1ede7430
Commit
1ede7430
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-18' into 'dev-3.0'
Update buchungen.php See merge request
!21
parents
67b3693c
c0cbde23
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!46
Release 3.0
,
!21
Update buchungen.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/konto/buchungen.php
+3
-1
3 additions, 1 deletion
content/konto/buchungen.php
with
3 additions
and
1 deletion
content/konto/buchungen.php
+
3
−
1
View file @
1ede7430
...
...
@@ -13,7 +13,9 @@
</thead>
<?php
$i
=
0
;
$buchungen_lesen
=
sql
::
$db
->
query
(
"SELECT * FROM `"
.
_VMS_
.
"_buchungen` WHERE uid="
.
$_SESSION
[
'uid'
]
.
" ORDER BY buchungszeit DESC LIMIT 50"
);
$buchungen_lesen
=
sql
::
$db
->
prepare
(
"SELECT * FROM `"
.
_VMS_
.
"_buchungen` WHERE uid=:session_uid ORDER BY buchungszeit DESC LIMIT 50"
);
$buchungen_lesen
->
bindParam
(
':session_uid'
,
$_SESSION
[
'uid'
],
PDO
::
PARAM_INT
);
$buchungen_lesen
->
execute
();
while
(
$buchung_schreiben
=
$buchungen_lesen
->
fetch
())
{
$i
++
;
$buchcolor
=
$system
[
'positiv_farbe'
];
...
...
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