Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMS-SUEE_2.0
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Eric Laufer
VMS-SUEE_2.0
Commits
748ff849
There was an error fetching the commit references. Please try again later.
Commit
748ff849
authored
5 years ago
by
Eric Laufer
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
20d0534c
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
adminforce/lib/layout.lib.php
+10
-7
10 additions, 7 deletions
adminforce/lib/layout.lib.php
lib/class/ref.class.php
+2
-2
2 additions, 2 deletions
lib/class/ref.class.php
pcheck.php
+1
-1
1 addition, 1 deletion
pcheck.php
top_forcedbanner.php
+1
-1
1 addition, 1 deletion
top_forcedbanner.php
with
14 additions
and
11 deletions
adminforce/lib/layout.lib.php
+
10
−
7
View file @
748ff849
...
...
@@ -14,14 +14,17 @@ function foot(){
}
function
menuehead
(
$titel
){
echo
'<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">'
.
$titel
.
'</h3>
</div>
<div class="panel-body">'
;
$titel2
=
str_replace
(
" "
,
"_"
,
$titel
);
echo
'
<a class="btn btn-primary btn-block" data-toggle="collapse" href="#'
.
$titel2
.
'" role="button" aria-expanded="false" aria-controls="'
.
$titel2
.
'">
'
.
$titel
.
'
</a>
<div class="collapse" id="'
.
$titel2
.
'">
<div class="card card-body">
'
;
}
function
menuefoot
(){
echo
'</div></div>'
;
echo
'</div></div>
<hr>
'
;
}
?>
\ No newline at end of file
?>
This diff is collapsed.
Click to expand it.
lib/class/ref.class.php
+
2
−
2
View file @
748ff849
...
...
@@ -33,8 +33,8 @@ class ref{
$this
->
konto
->
set_var
(
$werber
,
$verguetung
,
'+'
,
'Refzahlung ('
.
$uid
.
')'
);
if
(
$ressourcen
->
refback
>
0
){
$refback
=
$verguetung
/
100
*
$ressourcen
->
refback
;
$this
->
konto
->
set_var
(
$werber
,
$
verguetung
,
'-'
,
'Refback ('
.
$uid
.
'->'
.
$ressourcen
->
refback
.
'%)'
);
$this
->
konto
->
set_var
(
$uid
,
$
verguetung
,
'+'
,
'Refback ('
.
$ressourcen
->
refback
.
'%)'
);
$this
->
konto
->
set_var
(
$werber
,
$
refback
,
'-'
,
'Refback ('
.
$uid
.
'->'
.
$ressourcen
->
refback
.
'%)'
);
$this
->
konto
->
set_var
(
$uid
,
$
refback
,
'+'
,
'Refback ('
.
$ressourcen
->
refback
.
'%)'
);
}
if
(
$ebene
==
1
){
$this
->
db
->
update
(
PREFIX
.
WERBER
,
array
(
"umsatz"
=>
0
,
"gesamt"
=>
$ressourcen
->
gesamt
+
$ressourcen
->
umsatz
),
array
(
"uid"
=>
$uid
),
1
);
...
...
This diff is collapsed.
Click to expand it.
pcheck.php
+
1
−
1
View file @
748ff849
...
...
@@ -3,7 +3,7 @@ session_start();
if
(
!
isset
(
$_GET
[
'auszahlen'
]))
$_GET
[
'auszahlen'
]
=
"false"
;
require_once
(
'lib/functions.lib.php'
);
require_once
(
'lib/db_config.php'
);
require_once
(
'lib/
datenbank.inc
.php'
);
require_once
(
'lib/
class/db.class
.php'
);
$datenbank
=
new
DB
;
$grundconfig
=
$datenbank
->
get_row
(
"SELECT * FROM "
.
PREFIX
.
CONFIG
.
" "
,
true
);
require_once
(
'lib/functions.lib.php'
);
...
...
This diff is collapsed.
Click to expand it.
top_forcedbanner.php
+
1
−
1
View file @
748ff849
...
...
@@ -2,7 +2,7 @@
session_start
();
require_once
(
'lib/functions.lib.php'
);
require_once
(
'lib/db_config.php'
);
require_once
(
'lib/
datenbank.inc
.php'
);
require_once
(
'lib/
class/db.class
.php'
);
$datenbank
=
new
DB
;
$grundconfig
=
$datenbank
->
get_row
(
"SELECT * FROM "
.
PREFIX
.
CONFIG
.
" "
,
true
);
require_once
(
'lib/session.lib.php'
);
...
...
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